From 64a93b5f8e3e2f6c476fef3ec40ccad7e62e1cb6 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Mon, 23 Jan 2023 16:28:13 +0100 Subject: [PATCH] show open link first --- .../browser/userDataProfileImportExportService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts b/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts index 835a227f08736..1c69d1ec73b14 100644 --- a/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts +++ b/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts @@ -253,10 +253,10 @@ export class UserDataProfileImportExportService extends Disposable implements IU if (options?.previewAsTempProfile) { const actions: IAction[] = []; - actions.push(new Action('saveProfile', localize('save profile', "Save Profile"), undefined, true, async () => this.saveTemporaryProfile(importedProfile!))); if (isWeb) { actions.push(new Action('openInDesktop', localize('open in desktop', "Open in {0}", this.productService.nameLong), undefined, true, async () => this.openerService.open(uri, { openExternal: true }))); } + actions.push(new Action('saveProfile', localize('save profile', "Save Profile"), undefined, true, async () => this.saveTemporaryProfile(importedProfile!))); userDataProfileImportState.canSelect = false; await this.showProfilePreviewView(EXPORT_PROFILE_PREVIEW_VIEW, importedProfile.name, actions, new Action('close', localize('close', "Close")), userDataProfileImportState); } else {