diff --git a/frontend/src/components/discovery/TagCard.vue b/frontend/src/components/discovery/TagCard.vue index 2216526..acb3905 100644 --- a/frontend/src/components/discovery/TagCard.vue +++ b/frontend/src/components/discovery/TagCard.vue @@ -25,6 +25,11 @@ icon="mdi-book-open-page-variant" title="Manage series" @click.stop="$emit('manage', card.id)" /> + {{ store.series?.name || 'Series' }} {{ store.pages.length }} page(s) + Read
diff --git a/frontend/src/views/TagsView.vue b/frontend/src/views/TagsView.vue index 9ed92e7..e34b860 100644 --- a/frontend/src/views/TagsView.vue +++ b/frontend/src/views/TagsView.vue @@ -26,7 +26,7 @@
@@ -101,6 +101,10 @@ function openTag(tagId) { function onManage(id) { router.push({ name: 'series-manage', params: { tagId: id } }) } + +function onRead(id) { + router.push({ name: 'series-read', params: { tagId: id } }) +}