From 67514ccc5f4ff52f3363cae0908890b1557aaa6a Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Tue, 16 Oct 2018 21:55:21 -0700 Subject: [PATCH] change scroll container to fix ui glitch (#2924) --- 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 420ee11bce..f4e56a1207 100644 --- a/src/sql/parts/queryPlan/queryPlan.ts +++ b/src/sql/parts/queryPlan/queryPlan.ts @@ -41,7 +41,7 @@ export class QueryPlanView implements IPanelView { } } container.appendChild(this.container); - container.style.overflow = 'scroll'; + this.container.style.overflow = 'scroll'; } public layout(dimension: Dimension): void {