Skip to content

Commit 9f28071

Browse files
jrualesalexr00
authored andcommitted
Make URL locale-agnostic for Pull Request template documentation link (#8373)
1 parent 32d1cf6 commit 9f28071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/github/createPRViewProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ export class CreatePullRequestViewProvider extends BaseCreatePullRequestViewProv
829829
);
830830

831831
if (selected?.label === learnMore) {
832-
vscode.env.openExternal(vscode.Uri.parse('https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository'));
832+
vscode.env.openExternal(vscode.Uri.parse('https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository'));
833833
} else if (selected?.label === createTemplate) {
834834
await this.createPullRequestTemplate();
835835
}
@@ -1523,4 +1523,4 @@ Don't forget to commit your template file to the repository so that it can be us
15231523
vscode.window.showErrorMessage('Unsupported webview message');
15241524
}
15251525
}
1526-
}
1526+
}

0 commit comments

Comments
 (0)