Skip to content

Commit ce57c22

Browse files
fix: Fixed focus out for authentication dialog (close #918) (#919)
1 parent be6ce0a commit ce57c22

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/commands/promptAuth.ts

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export class PromptAuth extends Command {
1111
const username = await window.showInputBox({
1212
placeHolder: "Svn repository username",
1313
prompt: "Please enter your username",
14+
ignoreFocusOut: true,
1415
value: prevUsername
1516
});
1617

@@ -22,6 +23,7 @@ export class PromptAuth extends Command {
2223
placeHolder: "Svn repository password",
2324
prompt: "Please enter your password",
2425
value: prevPassword,
26+
ignoreFocusOut: true,
2527
password: true
2628
});
2729

0 commit comments

Comments
 (0)