mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed and issue where 'Use spaces' not working in the query tool. Fixes #7443
This commit is contained in:
committed by
Akshay Joshi
parent
f615ef30f9
commit
ea3203f466
@@ -463,7 +463,7 @@ export default function CodeMirror({currEditor, name, value, options, events, re
|
||||
editor?.current.setOption('foldGutter', pref.code_folding);
|
||||
}
|
||||
|
||||
editor?.current.setOption('indentWithTabs', pref.indent_with_tabs);
|
||||
editor?.current.setOption('indentWithTabs', !pref.use_spaces);
|
||||
editor?.current.setOption('indentUnit', pref.tab_size);
|
||||
editor?.current.setOption('tabSize', pref.tab_size);
|
||||
editor?.current.setOption('lineWrapping', pref.wrap_code);
|
||||
|
||||
Reference in New Issue
Block a user