fix: warnings navigateur
This commit is contained in:
parent
8d14676656
commit
fbe9619224
@@ -9,7 +9,7 @@
|
||||
|
||||
<div v-else-if="currentManga" class="relative">
|
||||
<!-- Composant invisible qui écoute les mises à jour Mercure -->
|
||||
<MercureListener :manga-id="mangaId" />
|
||||
<MercureListener :manga-id="String(mangaId)" />
|
||||
|
||||
<Toolbar :config="toolbarConfig" class="sticky top-16 z-10" />
|
||||
|
||||
@@ -129,7 +129,7 @@ import { useMangaStore } from '../../application/store/mangaStore';
|
||||
const router = useRouter();
|
||||
const mangaStore = useMangaStore();
|
||||
|
||||
const mangaId = computed(() => route.params.id || null);
|
||||
const mangaId = computed(() => Number(route.params.id) || null);
|
||||
|
||||
// État de la modale
|
||||
const isPreferredSourcesModalOpen = ref(false);
|
||||
|
||||
Reference in New Issue
Block a user