From c0e9f1ca43b2ff91d91fcd69057d8674237b04e5 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 31 Oct 2018 13:00:23 -0700 Subject: [PATCH] Fix build break in previous Query Plan commit --- src/sql/parts/queryPlan/queryPlan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/parts/queryPlan/queryPlan.ts b/src/sql/parts/queryPlan/queryPlan.ts index 216727cf1a..737daad64f 100644 --- a/src/sql/parts/queryPlan/queryPlan.ts +++ b/src/sql/parts/queryPlan/queryPlan.ts @@ -93,7 +93,7 @@ export class QueryPlan { QP.showPlan(this.container, this._xml, { jsTooltips: false }); - this.container.querySelectorAll('div.qp-tt').forEach(toolTip=>{ + (this.container.querySelectorAll('div.qp-tt')).forEach(toolTip=>{ toolTip.classList.add('monaco-editor'); toolTip.classList.add('monaco-editor-hover'); });