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

@@ -1,5 +1,5 @@
<template>
<UPageBody>
<TrangaPage>
<UPageSection title="Settings">
<template #description>
<div>
@@ -43,7 +43,7 @@
>
</UCard>
</UPageSection>
</UPageBody>
</TrangaPage>
</template>
<script setup lang="ts">
@@ -95,7 +95,7 @@ const onKavitaClick = async () => {
}
};
const { data: settings, status: settingsStatus } = useApi('/v2/Settings', { key: FetchKeys.Settings.All });
const { status: settingsStatus } = useApi('/v2/Settings', { key: FetchKeys.Settings.All });
useHead({ title: 'Settings' });
</script>