From d0c584672fed36047ac38856de4fe6197f1cf56c Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Tue, 15 Jan 2019 16:06:51 -0800 Subject: [PATCH] Fix Top Operations tab title (#3751) --- src/sql/parts/queryPlan/topOperations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/parts/queryPlan/topOperations.ts b/src/sql/parts/queryPlan/topOperations.ts index b73271f98a..17e8008288 100644 --- a/src/sql/parts/queryPlan/topOperations.ts +++ b/src/sql/parts/queryPlan/topOperations.ts @@ -42,7 +42,7 @@ export class TopOperationsState { } export class TopOperationsTab implements IPanelTab { - public readonly title = localize('topOperationsTitle', 'Top Operation'); + public readonly title = localize('topOperationsTitle', 'Top Operations'); public readonly identifier = 'TopOperationsTab'; public readonly view: TopOperationsView;