mirror of
https://github.com/gotson/komga.git
synced 2025-01-09 04:08:00 +08:00
feat(webui): show series title within read list navigation
This commit is contained in:
parent
1463078367
commit
f388e9bf76
@ -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 New Issue
Block a user