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'); });