mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 07:23:34 +01:00
feat(webui): show series title within read list navigation
This commit is contained in:
parent
1463078367
commit
f388e9bf76
1 changed files with 3 additions and 1 deletions
|
|
@ -66,7 +66,9 @@
|
|||
:key="i"
|
||||
:to="{ name: 'browse-book', params: { bookId: book.id }, query: { context: context.origin, contextId: context.id} }"
|
||||
>
|
||||
<v-list-item-title class="text-wrap text-body-2">{{ book.metadata.number }} - {{ book.metadata.title }}
|
||||
<v-list-item-title class="text-wrap text-body-2">
|
||||
<template v-if="contextReadList">{{ book.seriesTitle }} {{ book.metadata.number }}: {{ book.metadata.title }}</template>
|
||||
<template v-else>{{ book.metadata.number }} - {{ book.metadata.title }}</template>
|
||||
</v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list-item-group>
|
||||
|
|
|
|||
Loading…
Reference in a new issue