From e073b2cf4275d27fa68ed6756dffd593104cff36 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Mon, 15 Oct 2018 16:04:36 -0700 Subject: [PATCH] Change 'Clear All' to 'Show All Connections' (#2865) --- src/sql/parts/objectExplorer/viewlet/connectionTreeAction.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/parts/objectExplorer/viewlet/connectionTreeAction.ts b/src/sql/parts/objectExplorer/viewlet/connectionTreeAction.ts index 9c68a963c5..821e2e18e3 100644 --- a/src/sql/parts/objectExplorer/viewlet/connectionTreeAction.ts +++ b/src/sql/parts/objectExplorer/viewlet/connectionTreeAction.ts @@ -218,7 +218,7 @@ export class ActiveConnectionsFilterAction extends Action { public static LABEL = localize('activeConnections', 'Show Active Connections'); private static enabledClass = 'active-connections-action'; private static disabledClass = 'icon server-page'; - private static clearAllLabel = localize('clearAll', 'Clear All'); + private static showAllConnectionsLabel = localize('showAllConnections', 'Show All Connections'); private _isSet: boolean; public static readonly ACTIVE = 'active'; public get isSet(): boolean { @@ -249,7 +249,7 @@ export class ActiveConnectionsFilterAction extends Action { // show active connections in the tree this.view.showFilteredTree(ActiveConnectionsFilterAction.ACTIVE); this.isSet = true; - this.label = ActiveConnectionsFilterAction.clearAllLabel; + this.label = ActiveConnectionsFilterAction.showAllConnectionsLabel; } else { // show full tree this.view.refreshTree();