Procházet zdrojové kódy

Removes help link until it exists

main
Eric Amodio před 4 roky
rodič
revize
5e409b4c4e
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      src/git/remotes/github.ts

+ 3
- 1
src/git/remotes/github.ts Zobrazit soubor

@ -73,6 +73,7 @@ export class GitHubRemote extends RemoteProviderWithApi<{ token: string }> {
input.onDidHide(() => resolve(undefined)),
input.onDidTriggerButton(e => {
if (e === this.Buttons.Help) {
// TODO@eamodio link to proper wiki
void env.openExternal(Uri.parse('https://github.com/eamodio/vscode-gitlens/wiki'));
}
}),
@ -86,7 +87,8 @@ export class GitHubRemote extends RemoteProviderWithApi<{ token: string }> {
input.onDidAccept(() => resolve(input.value)),
);
input.buttons = [this.Buttons.Help];
// TODO@eamodio add this button once we have a valid help link above
// input.buttons = [this.Buttons.Help];
input.title = `Connect to ${this.name}`;
input.prompt = 'Enter a GitHub personal access token';
input.placeholder = 'Generate a personal access token from github.com (required)';

Načítá se…
Zrušit
Uložit