aboutsummaryrefslogtreecommitdiff
path: root/app/components/plan-node/plan-node.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/plan-node/plan-node.ts')
-rw-r--r--app/components/plan-node/plan-node.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/plan-node/plan-node.ts b/app/components/plan-node/plan-node.ts
index fc865b8..2f3164e 100644
--- a/app/components/plan-node/plan-node.ts
+++ b/app/components/plan-node/plan-node.ts
@@ -66,7 +66,6 @@ export class PlanNode {
}
ngDoCheck() {
- // console.log("check", this.currentHighlightType, this.viewOptions.highlightType);
if (this.currentHighlightType !== this.viewOptions.highlightType) {
this.currentHighlightType = this.viewOptions.highlightType;
this.calculateBar();
@@ -78,6 +77,7 @@ export class PlanNode {
keyItems.push(this.node[this._planService.SCHEMA_PROP] + '.' + this.node[this._planService.RELATION_NAME_PROP]);
keyItems.push(' ' + this.node[this._planService.RELATION_NAME_PROP] + ' ');
keyItems.push(' ' + this.node[this._planService.ALIAS_PROP] + ' ');
+ keyItems.push(this.node[this._planService.GROUP_KEY_PROP]);
return this._syntaxHighlightService.highlightKeyItems(this.plan.formattedQuery, keyItems);
}