Skip to content

Commit

Permalink
feat(webui): show series title within read list navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Feb 14, 2022
1 parent 1463078 commit f388e9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion komga-webui/src/views/BrowseBook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit f388e9b

Please sign in to comment.