fix(webui): show number of displayed elements instead of total when browsing collection/readlist

This commit is contained in:
Gauthier Roebroeck 2023-09-25 17:51:15 +08:00
parent 62709861bc
commit d117fc1cf1
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
<v-toolbar-title v-if="collection">
<span>{{ collection.name }}</span>
<v-chip label class="mx-4">
<span style="font-size: 1.1rem">{{ collection.seriesIds.length }}</span>
<span style="font-size: 1.1rem">{{ totalElements }}</span>
</v-chip>
<span v-if="collection.ordered"
class="font-italic text-overline"

View file

@ -9,7 +9,7 @@
<v-toolbar-title v-if="readList">
<span>{{ readList.name }}</span>
<v-chip label class="mx-4">
<span style="font-size: 1.1rem">{{ readList.bookIds.length }}</span>
<span style="font-size: 1.1rem">{{ totalElements }}</span>
</v-chip>
<span v-if="readList.ordered"
class="font-italic text-overline"