From a2651fefcb3c5a6a57ba27687309c11ca7395aaa Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 25 Sep 2018 14:39:23 +0200 Subject: [PATCH] Fix #59312 --- .../extensions/electron-browser/inactiveExtensionUrlHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/extensions/electron-browser/inactiveExtensionUrlHandler.ts b/src/vs/workbench/services/extensions/electron-browser/inactiveExtensionUrlHandler.ts index dd17b4aca96..16bffb800bb 100644 --- a/src/vs/workbench/services/extensions/electron-browser/inactiveExtensionUrlHandler.ts +++ b/src/vs/workbench/services/extensions/electron-browser/inactiveExtensionUrlHandler.ts @@ -206,7 +206,7 @@ export class ExtensionUrlHandler implements IExtensionUrlHandler, IURLHandler { type: 'question' }).then(async result => { if (result.confirmed) { - let notificationHandle = this.notificationService.notify({ severity: Severity.Info, message: localize('Installing', "Installing {0}...", galleryExtension.displayName || galleryExtension.name) }); + let notificationHandle = this.notificationService.notify({ severity: Severity.Info, message: localize('Installing', "Installing Extension '{0}'...", galleryExtension.displayName || galleryExtension.name) }); notificationHandle.progress.infinite(); notificationHandle.onDidClose(() => notificationHandle = null); try { -- GitLab