diff --git a/src/vs/editor/common/config/editorOptions.ts b/src/vs/editor/common/config/editorOptions.ts index 737670324b8..0317d84ba71 100644 --- a/src/vs/editor/common/config/editorOptions.ts +++ b/src/vs/editor/common/config/editorOptions.ts @@ -863,7 +863,7 @@ class EditorEnumOption extends Bas if (typeof schema !== 'undefined') { schema.type = 'string'; schema.enum = allowedValues; - schema.default = defaultValue; + schema.default = defaultStringValue; } super(id, name, defaultValue, schema); this._allowedValues = allowedValues;