Browse Source

Adds contextValue to DBG node tooltip

main
Eric Amodio 5 years ago
parent
commit
a6429586da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/views/viewBase.ts

+ 1
- 1
src/views/viewBase.ts View File

@ -61,7 +61,7 @@ export abstract class ViewBase> implements TreeData
this.getTreeItem = async function(this: ViewBase<TRoot>, node: ViewNode) {
const item = await fn.apply(this, [node]);
item.tooltip = `${item.tooltip || item.label}\n\nDBG: ${node.toString()}`;
item.tooltip = `${item.tooltip || item.label}\n\nDBG: ${node.toString()}, ${item.contextValue}`;
return item;
};
}

Loading…
Cancel
Save