提交 4099c5d2 编写于 作者: S Sandeep Somavarapu

fix do not show builtin extensions as installed in web

上级 41327843
......@@ -90,14 +90,15 @@ export class WebExtensionManagementService extends Disposable implements IExtens
}
private async toLocalExtension(scannedExtension: ITranslatedScannedExtension): Promise<ILocalExtension> {
return <ILocalExtension>{
return {
type: scannedExtension.type,
identifier: scannedExtension.identifier,
manifest: scannedExtension.packageJSON,
location: scannedExtension.location,
isMachineScoped: false,
publisherId: null,
publisherDisplayName: null
publisherDisplayName: null,
isBuiltin: scannedExtension.type === ExtensionType.System
};
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册