We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785b66c commit 9457382Copy full SHA for 9457382
src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
@@ -295,7 +295,11 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
295
// Run the store action to get back a ref
296
let ref: string | undefined;
297
if (shouldStoreEditSession) {
298
- ref = await that.storeEditSession(false);
+ ref = await that.progressService.withProgress({
299
+ location: ProgressLocation.Notification,
300
+ type: 'syncing',
301
+ title: localize('store your edit session', 'Storing your edit session...')
302
+ }, async () => that.storeEditSession(false));
303
}
304
305
let uri = workspaceUri ?? await that.pickContinueEditSessionDestination();
0 commit comments