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 9c618ec commit 2b0d08bCopy full SHA for 2b0d08b
src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts
@@ -181,7 +181,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
181
182
const profile = that.userDataProfileService.currentProfile;
183
const shortName = await quickInputService.input({
184
- value: profile.shortName,
+ value: that.userDataProfileService.getShortName(profile),
185
title: localize('change short name', "Change Short Name..."),
186
validateInput: async (value: string) => {
187
if (profile.shortName !== value && !ThemeIcon.fromString(value) && charCount(value) > 2) {
0 commit comments