From 5b34dd2eee02f31d68313c4f1082f7a641875e03 Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Fri, 3 Jan 2020 11:28:32 -0800 Subject: [PATCH] add listening for refreshing the top operations table (#8780) --- src/sql/workbench/contrib/queryPlan/browser/topOperations.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sql/workbench/contrib/queryPlan/browser/topOperations.ts b/src/sql/workbench/contrib/queryPlan/browser/topOperations.ts index a8f27e8aee..30c41a6e5d 100644 --- a/src/sql/workbench/contrib/queryPlan/browser/topOperations.ts +++ b/src/sql/workbench/contrib/queryPlan/browser/topOperations.ts @@ -66,6 +66,7 @@ export class TopOperationsView extends Disposable implements IPanelView { }); this._register(this.table); this._register(attachTableStyler(this.table, this.themeService)); + this._register(this.dataView.onRowCountChange(() => this.table.updateRowCount())); } public render(container: HTMLElement): void {