aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor
diff options
context:
space:
mode:
Diffstat (limited to 'components/editor')
-rw-r--r--components/editor/EditorSidebarQuest.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/editor/EditorSidebarQuest.vue b/components/editor/EditorSidebarQuest.vue
index c40b22c..fb21042 100644
--- a/components/editor/EditorSidebarQuest.vue
+++ b/components/editor/EditorSidebarQuest.vue
@@ -15,7 +15,7 @@ const setSelectedQuest = () => {
};
const selected = computed(() => {
- return route.path.startsWith('/quest') && route.params.id === quest.value.id;
+ return route.path.startsWith('/editor/quest') && route.params.id === quest.value.id;
});
</script>