We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74a28dd + 35ea3d7 commit 2be7f52Copy full SHA for 2be7f52
extensions/references-view/src/calls/model.ts
@@ -177,7 +177,7 @@ class CallItemDataProvider implements vscode.TreeDataProvider<CallItem> {
177
178
const item = new vscode.TreeItem(element.item.name);
179
item.description = element.item.detail;
180
- item.tooltip = item.label ? `${item.label} - ${element.item.detail}` : element.item.detail;
+ item.tooltip = item.label && element.item.detail ? `${item.label} - ${element.item.detail}` : item.label ? `${item.label}` : element.item.detail;
181
item.contextValue = 'call-item';
182
item.iconPath = getThemeIcon(element.item.kind);
183
0 commit comments