Merge pull request 'fix(manga): afficher le titre du chapitre téléchargé individuellement' (#40) from fix/chapter-title-downloaded into main
All checks were successful
Deploy / deploy (push) Successful in 1m9s

Reviewed-on: #40
This commit was merged in pull request #40.
This commit is contained in:
2026-03-27 11:30:16 +01:00

View File

@@ -14,14 +14,14 @@
chapterId: chapter.id chapterId: chapter.id
} }
}"> }">
<template v-if="chapter.isVolumeGroup"> <template v-if="chapter.isVolumeGroup && chapter.volumeChapterCount > 1">
{{ chapter.volumeChapterCount > 1 ? 'Chapitres ' : 'Chapitre ' }}{{ chapter.volumeChaptersRange }} Chapitres {{ chapter.volumeChaptersRange }}
</template> </template>
<template v-else>{{ chapter.title || 'Sans titre' }}</template> <template v-else>{{ chapter.title || 'Sans titre' }}</template>
</router-link> </router-link>
<span v-else class="text-gray-500 dark:text-gray-400"> <span v-else class="text-gray-500 dark:text-gray-400">
<template v-if="chapter.isVolumeGroup"> <template v-if="chapter.isVolumeGroup && chapter.volumeChapterCount > 1">
{{ chapter.volumeChapterCount > 1 ? 'Chapitres ' : 'Chapitre ' }}{{ chapter.volumeChaptersRange }} Chapitres {{ chapter.volumeChaptersRange }}
</template> </template>
<template v-else>{{ chapter.title || 'Sans titre' }}</template> <template v-else>{{ chapter.title || 'Sans titre' }}</template>
</span> </span>