From d166d982c431a3bb719e1a16f53fe17ff316a6eb Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Thu, 2 Jun 2022 10:09:27 -0700 Subject: [PATCH] make sure controls are enabled (#19595) --- .../workbench/services/connection/browser/connectionWidget.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sql/workbench/services/connection/browser/connectionWidget.ts b/src/sql/workbench/services/connection/browser/connectionWidget.ts index dd928ba4ab..75d749075e 100644 --- a/src/sql/workbench/services/connection/browser/connectionWidget.ts +++ b/src/sql/workbench/services/connection/browser/connectionWidget.ts @@ -544,6 +544,9 @@ export class ConnectionWidget extends lifecycle.Disposable { } else if (currentAuthType === AuthenticationType.SqlLogin) { this._tableContainer.classList.remove('hide-username'); this._tableContainer.classList.remove('hide-password'); + this._userNameInputBox.enable(); + this._passwordInputBox.enable(); + this._rememberPasswordCheckBox.enabled = true; } }