diff --git a/ui/package-lock.json b/ui/package-lock.json index 0467001900..f4287030c5 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-azureextensionui", - "version": "0.38.5", + "version": "0.38.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/ui/package.json b/ui/package.json index d0f78a60ec..945c225d95 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,7 +1,7 @@ { "name": "vscode-azureextensionui", "author": "Microsoft Corporation", - "version": "0.38.5", + "version": "0.38.6", "description": "Common UI tools for developing Azure extensions for VS Code", "tags": [ "azure", diff --git a/ui/src/tree/AzExtTreeDataProvider.ts b/ui/src/tree/AzExtTreeDataProvider.ts index 475b4da344..8231514e2d 100644 --- a/ui/src/tree/AzExtTreeDataProvider.ts +++ b/ui/src/tree/AzExtTreeDataProvider.ts @@ -63,11 +63,6 @@ export class AzExtTreeDataProvider implements IAzExtTreeDataProviderInternal, ty ti.tooltip = await treeItem.resolveTooltip(); } - // If the tooltip is falsy, change it to the label--otherwise, it will be stuck on 'Loading...' - // (VSCode sees there's a `resolveTreeItem` method, so it tries resolving, but only replaces 'Loading...' with your tooltip if your tooltip is truthy) - // Label is the default behavior if tooltip is falsy, so we'll supply that - ti.tooltip = ti.tooltip || ti.label; - return ti; }