Skip to content

Commit 0762fda

Browse files
authored
Chat view does not come back when I enabled then disabled the setting… (microsoft#265097)
Chat view does not come back when I enabled then disabled the setting (fix microsoft#264724)
1 parent e41f316 commit 0762fda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/services/configuration/browser/configurationService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ class ConfigurationDefaultOverridesContribution extends Disposable implements IW
13951395
const allProperties = this.configurationRegistry.getConfigurationProperties();
13961396
for (const property of properties) {
13971397
const schema = allProperties[property];
1398-
if (!schema.experiment) {
1398+
if (!schema?.experiment) {
13991399
continue;
14001400
}
14011401
if (!autoRefetch && this.processedExperimentalSettings.has(property)) {

0 commit comments

Comments
 (0)