Переглянути джерело

Removes help link until it exists

main
Eric Amodio 4 роки тому
джерело
коміт
5e409b4c4e
1 змінених файлів з 3 додано та 1 видалено
  1. +3
    -1
      src/git/remotes/github.ts

+ 3
- 1
src/git/remotes/github.ts Переглянути файл

@ -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)';

Завантаження…
Відмінити
Зберегти