Skip to content

Commit 9b1ebb2

Browse files
authored
Merge pull request microsoft#189132 from microsoft/sandy081/late-jellyfish
fix microsoft#188794
2 parents e731964 + 414d754 commit 9b1ebb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/preferences/browser/settingsTree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,7 @@ class ApplySettingToAllProfilesAction extends Action {
25272527

25282528
const newValue = distinct(value);
25292529
if (this.checked) {
2530-
await this.configService.updateValue(this.setting.key, this.configService.inspect(this.setting.key).userLocal?.value, ConfigurationTarget.USER_LOCAL);
2530+
await this.configService.updateValue(this.setting.key, this.configService.inspect(this.setting.key).application?.value, ConfigurationTarget.USER_LOCAL);
25312531
await this.configService.updateValue(APPLY_ALL_PROFILES_SETTING, newValue.length ? newValue : undefined, ConfigurationTarget.USER_LOCAL);
25322532
} else {
25332533
await this.configService.updateValue(APPLY_ALL_PROFILES_SETTING, newValue.length ? newValue : undefined, ConfigurationTarget.USER_LOCAL);

0 commit comments

Comments
 (0)