Skip to content

Commit

Permalink
Merge pull request #2173 from codefori/fix/typings_2_12_0
Browse files Browse the repository at this point in the history
Fix/typings_2_12_0
  • Loading branch information
sebjulliand authored Jul 18, 2024
2 parents 9ea8ad9 + e9fdd9d commit 0b52845
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/webviews/login/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ async function promptPassword(context: vscode.ExtensionContext, connection: Conn
}];

const onClose = (button?: vscode.QuickInputButton | void) => {
if (button?.tooltip === savePasswordLabel) {
if (button && button.tooltip === savePasswordLabel) {
savePassword = true;
}
connection.password = passwordBox.value;
Expand Down

0 comments on commit 0b52845

Please sign in to comment.