From f47c6c1e15893b1ebc8b0f5fb57f40283f07ee52 Mon Sep 17 00:00:00 2001 From: Joy Lal Chattaraj Date: Thu, 18 Jul 2019 13:22:12 +0000 Subject: [PATCH] Fixes #5693 Show Path in PluginFolder Notification Signed-off-by: Joy Lal Chattaraj --- packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts b/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts index 70fc362dd7b00..9563ea2c615e5 100644 --- a/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts +++ b/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts @@ -265,7 +265,7 @@ export class HostedPluginManagerClient { if (UriSelection.is(result)) { if (await this.hostedPluginServer.isPluginValid(result.uri.toString())) { this.pluginLocation = result.uri; - this.messageService.info('Plugin folder is set to: ' + result.uri.toString()); + this.messageService.info('Plugin folder is set to: ' + this.labelProvider.getLongName(result.uri)); } else { this.messageService.error('Specified folder does not contain valid plugin.'); }