Skip to content

Commit 1746152

Browse files
authored
Merge pull request microsoft#172280 from microsoft/sandy081/minor-chickadee
fix microsoft#172161
2 parents 6412d05 + 917969a commit 1746152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export class UserDataProfileImportExportService extends Disposable implements IU
320320
const message = localize('export success', "Profile '{0}' was exported successfully.", profile.name);
321321
if (profileContentHandler.extensionId) {
322322
const actions: string[] = [];
323-
const link = this.productService.webUrl ? `${this.productService.webUrl}${PROFILE_URL_AUTHORITY}/${id}/${saveResult.id}` : toUserDataProfileUri(`/${id}/${saveResult.id}`, this.productService).toString();
323+
const link = this.productService.webUrl ? `${this.productService.webUrl}/${PROFILE_URL_AUTHORITY}/${id}/${saveResult.id}` : toUserDataProfileUri(`/${id}/${saveResult.id}`, this.productService).toString();
324324
actions.push(localize('copy', "Copy Link"));
325325
if (this.productService.webUrl) {
326326
actions.push(localize('open', "Open Link"));

0 commit comments

Comments
 (0)