Merge pull request #208831 from microsoft/tyriar/204167_2

Remove color/id in profile, this didn't work properly
This commit is contained in:
Daniel Imms 2024-03-26 13:13:45 -07:00 committed by GitHub
commit 5a26bd11e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,12 +139,6 @@ export class TerminalProfileQuickpick {
if (context.item.profile.env) {
newConfigValue[name].env = context.item.profile.env;
}
if (context.item.profile.color) {
newConfigValue[name].color = context.item.profile.color;
}
if (context.item.profile.icon) {
newConfigValue[name].icon = context.item.profile.icon;
}
await this._configurationService.updateValue(profilesKey, newConfigValue, ConfigurationTarget.USER);
},
onKeyMods: mods => keyMods = mods