mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
feat(editor): Enable NodeView.switcher
by default in dev mode (no-changelog) (#10165)
This commit is contained in:
parent
dea212659a
commit
fe1a1d80c6
|
@ -96,7 +96,7 @@ const importFileRef = ref<HTMLInputElement | undefined>();
|
|||
const tagsEventBus = createEventBus();
|
||||
const sourceControlModalEventBus = createEventBus();
|
||||
|
||||
const nodeViewSwitcher = useLocalStorage('NodeView.switcher', '');
|
||||
const nodeViewSwitcher = useLocalStorage('NodeView.switcher', import.meta.env.DEV ? 'true' : '');
|
||||
const nodeViewVersion = useLocalStorage('NodeView.version', '1');
|
||||
|
||||
const hasChanged = (prev: string[], curr: string[]) => {
|
||||
|
|
Loading…
Reference in a new issue