Adds a tooltip title prop to the diagram node. (#18458)

* Adds a tooltip title prop to the diagram node.

* Updates azdataGraph package version to 0.0.16
This commit is contained in:
Lewis Sanchez
2022-02-17 16:18:49 -08:00
committed by GitHub
parent 3a04235001
commit 3472e229f1
7 changed files with 13 additions and 12 deletions

View File

@@ -284,6 +284,7 @@ export class QueryPlan2 implements ISashLayoutProvider {
private populate(node: InternalExecutionPlanNode, diagramNode: any): any {
diagramNode.label = node.subtext.join(this.textResourcePropertiesService.getEOL(undefined));
diagramNode.tooltipTitle = node.name;
const nodeId = this.createGraphElementId();
diagramNode.id = nodeId;
node.id = nodeId;