mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 23:45:11 +01:00
fix(webui): show number of displayed elements instead of total when browsing collection/readlist
This commit is contained in:
parent
62709861bc
commit
d117fc1cf1
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue