diff --git a/src/components/StoryGallery.vue b/src/components/StoryGallery.vue index acf46c6..f767672 100644 --- a/src/components/StoryGallery.vue +++ b/src/components/StoryGallery.vue @@ -21,6 +21,7 @@ const emit = defineEmits<{ }>() const showChapterPicker = ref(false) +const showDetails = ref(false) function collectReachable(startId: string): Set { const visited = new Set() @@ -212,23 +213,38 @@ const tree = computed(() => buildTreeForChapter(currentChapterId.value))