make sure controls are enabled (#19595)

This commit is contained in:
Alan Ren
2022-06-02 10:09:27 -07:00
committed by GitHub
parent f06fd7f6f7
commit d166d982c4

View File

@@ -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;
}
}