提交 03e15638 编写于 作者: J Johannes Rieken

fix #33494

上级 e6711d98
......@@ -12,6 +12,7 @@ import { IExtensionPoint } from 'vs/platform/extensions/common/extensionsRegistr
export interface IExtensionDescription {
readonly id: string;
readonly name: string;
readonly displayName?: string;
readonly version: string;
readonly publisher: string;
readonly isBuiltin: boolean;
......
......@@ -72,7 +72,7 @@ export class MainThreadMessageService implements MainThreadMessageServiceShape {
messageHide = this._messageService.show(severity, {
message,
actions,
source: extension && `${extension.name} (${extension.id})`
source: extension && `${extension.displayName || extension.name}`
});
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册