From 41f929951d797e0cc867b1d0330e586204ec3792 Mon Sep 17 00:00:00 2001 From: cocos02 Date: Fri, 12 Jun 2026 13:11:27 +0800 Subject: [PATCH] fix: remove expand/collapse for footer details, always show stats and endings --- src/components/StoryGallery.vue | 63 +++++++-------------------------- 1 file changed, 13 insertions(+), 50 deletions(-) diff --git a/src/components/StoryGallery.vue b/src/components/StoryGallery.vue index fea9322..94e2a24 100644 --- a/src/components/StoryGallery.vue +++ b/src/components/StoryGallery.vue @@ -21,7 +21,6 @@ const emit = defineEmits<{ }>() const showChapterPicker = ref(false) -const showDetails = ref(false) function isOtherChapterStart(sceneId: string, ownChapterId: string): boolean { return props.chapters.some(c => c.id !== ownChapterId && c.startScene === sceneId) @@ -229,28 +228,23 @@ const tree = computed(() => buildTreeForChapter(currentChapterId.value)) - -