We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db0fb19 commit d195206Copy full SHA for d195206
1 file changed
src/vs/workbench/services/preferences/browser/preferencesService.ts
@@ -214,7 +214,7 @@ export class PreferencesService extends Disposable implements IPreferencesServic
214
215
private openSettings2(options?: ISettingsEditorOptions): Promise<IEditor> {
216
const input = this.settingsEditor2Input;
217
- return this.editorService.openEditor(input, options)
+ return this.editorService.openEditor(input, options ? SettingsEditorOptions.create(options) : undefined)
218
.then(() => this.editorGroupService.activeGroup.activeControl!);
219
}
220
0 commit comments