Skip to content

Commit

Permalink
fix: Fixed focus out for authentication dialog (close #918) (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmessias committed May 6, 2020
1 parent be6ce0a commit ce57c22
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/commands/promptAuth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export class PromptAuth extends Command {
const username = await window.showInputBox({
placeHolder: "Svn repository username",
prompt: "Please enter your username",
ignoreFocusOut: true,
value: prevUsername
});

Expand All @@ -22,6 +23,7 @@ export class PromptAuth extends Command {
placeHolder: "Svn repository password",
prompt: "Please enter your password",
value: prevPassword,
ignoreFocusOut: true,
password: true
});

Expand Down

0 comments on commit ce57c22

Please sign in to comment.