From c8986464ecc64ab60a810277c5c0a1e10604c7c8 Mon Sep 17 00:00:00 2001 From: Aditya Bist Date: Fri, 25 Jan 2019 13:29:39 -0800 Subject: [PATCH] fixed arrows disappearing after tab change (#3829) --- src/sql/parts/queryPlan/queryPlan.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/parts/queryPlan/queryPlan.ts b/src/sql/parts/queryPlan/queryPlan.ts index 8338ff6510..2bf42066db 100644 --- a/src/sql/parts/queryPlan/queryPlan.ts +++ b/src/sql/parts/queryPlan/queryPlan.ts @@ -45,14 +45,14 @@ export class QueryPlanView implements IPanelView { private _state: QueryPlanState; public render(container: HTMLElement): void { + container.appendChild(this.container); + this.container.style.overflow = 'scroll'; if (!this.qp) { this.qp = new QueryPlan(this.container); if (this.xml) { this.qp.xml = this.xml; } } - container.appendChild(this.container); - this.container.style.overflow = 'scroll'; } dispose() {