From 8d0ba0fe1217ada55a6fee01b66b3bdc4c898ff3 Mon Sep 17 00:00:00 2001 From: Cheena Malhotra <13396919+cheenamalhotra@users.noreply.github.com> Date: Thu, 29 Jun 2023 00:24:14 -0700 Subject: [PATCH] Fix Get current connection string command (#23543) --- .../services/connection/browser/connectionActions.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/sql/workbench/services/connection/browser/connectionActions.ts b/src/sql/workbench/services/connection/browser/connectionActions.ts index f1d46e0e3e..d331c42851 100644 --- a/src/sql/workbench/services/connection/browser/connectionActions.ts +++ b/src/sql/workbench/services/connection/browser/connectionActions.ts @@ -238,10 +238,9 @@ export class GetCurrentConnectionStringAction extends Action2 { public static LABEL = nls.localize('connectionAction.GetCurrentConnectionString', "Get Current Connection String"); constructor() { - //super(GetCurrentConnectionStringAction.ID, GetCurrentConnectionStringAction.LABEL); super({ - id: ClearRecentConnectionsAction.ID, - title: { value: ClearRecentConnectionsAction.LABEL, original: ClearRecentConnectionsAction.LABEL_ORG }, + id: GetCurrentConnectionStringAction.ID, + title: { value: GetCurrentConnectionStringAction.LABEL, original: GetCurrentConnectionStringAction.LABEL_ORG }, f1: true }); }