We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3fe9c commit 1df2355Copy full SHA for 1df2355
1 file changed
src/vs/workbench/contrib/timeline/browser/timelinePane.ts
@@ -403,7 +403,7 @@ export class TimelinePane extends ViewPane {
403
private async handleRequest(request: TimelineRequest) {
404
let timeline: Timeline | undefined;
405
try {
406
- timeline = await this.progressService.withProgress({ location: this.getProgressLocation() }, () => request.result);
+ timeline = await this.progressService.withProgress({ location: this.id }, () => request.result);
407
}
408
finally {
409
this._pendingRequests.delete(request.source);
0 commit comments