Skip to content

Commit

Permalink
Add our extension name to the PAT request prompt
Browse files Browse the repository at this point in the history
This is so the user has a clue what kind of PAT is required and which extension sent the request. There's also an [open issue](microsoft/vscode#136856) for VS Code to automatically show this information (which would mean we could revert to the old prompt or use `Please provide PAT for Azure DevOps access`)
  • Loading branch information
Merlin2001 authored Nov 10, 2021
1 parent 2d2ca65 commit 139e3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azdo/credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class CredentialStore implements vscode.Disposable {
Logger.debug(`Manual personal access token option chosen.`, CREDENTIALS_COMPONENT_ID);
const token = await vscode.window.showInputBox({
value: '',
prompt: 'Please provide PAT',
prompt: 'Azure Devops Pull Requests: Please provide PAT',
placeHolder: '',
password: true,
});
Expand Down

0 comments on commit 139e3a2

Please sign in to comment.