diff options
Diffstat (limited to 'components/editor/EditorSidebarMainConfiguration.vue')
| -rw-r--r-- | components/editor/EditorSidebarMainConfiguration.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/editor/EditorSidebarMainConfiguration.vue b/components/editor/EditorSidebarMainConfiguration.vue index c4727c6..bf7196b 100644 --- a/components/editor/EditorSidebarMainConfiguration.vue +++ b/components/editor/EditorSidebarMainConfiguration.vue @@ -4,11 +4,11 @@ import { computed } from 'vue'; const route = useRoute(); const setSelected = () => { - navigateTo({ path: '/config' }) + navigateToEditorPane('config'); }; const selected = computed(() => { - return route.path.startsWith('/config'); + return route.path.startsWith('/editor/config'); }); </script> |
