Fix LibrarySelect

Move recursive routing to trangapage
This commit is contained in:
2025-10-16 21:35:12 +02:00
parent 732e1a7b1f
commit 2b6818b09e
13 changed files with 72 additions and 58 deletions

View File

@@ -39,7 +39,7 @@
:key="m.key"
:manga="m"
:expanded="i === expanded"
@click="navigateTo(`/manga/${m.key}?download=true&return=${path}`)" />
@click="navigateTo(`/manga/${m.key}?download=true&return=${$route.fullPath}`)" />
</div>
</template>
</UPageSection>
@@ -52,8 +52,6 @@ import type { StepperItem } from '@nuxt/ui';
type MangaConnector = components['schemas']['MangaConnector'];
type MinimalManga = components['schemas']['MinimalManga'];
const path = useRoute().fullPath;
const { data: connectors } = await useApi('/v2/MangaConnector', { key: FetchKeys.MangaConnector.All });
const query = ref<string>();