We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b122065 commit e84e8beCopy full SHA for e84e8be
src/github/pullRequestOverview.ts
@@ -327,7 +327,7 @@ export class PullRequestOverviewPanel extends IssueOverviewPanel<PullRequestMode
327
this._panel.webview.html = this.getHtmlForWebview(pullRequestModel.number.toString());
328
}
329
330
- return this.updatePullRequest(pullRequestModel);
+ return vscode.window.withProgress({ location: { viewId: 'pr:github' } }, () => this.updatePullRequest(pullRequestModel));
331
332
333
protected async _onDidReceiveMessage(message: IRequestMessage<any>) {
0 commit comments