From 40d03596ac02ebc630cecae796e8bb5674e97bd8 Mon Sep 17 00:00:00 2001 From: mfcar Date: Sun, 15 Jun 2025 11:19:42 +0100 Subject: [PATCH] Add calendar link to toolbar in smaller resolution --- client/components/app/BookShelfToolbar.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/components/app/BookShelfToolbar.vue b/client/components/app/BookShelfToolbar.vue index 739a96a26..a68891501 100644 --- a/client/components/app/BookShelfToolbar.vue +++ b/client/components/app/BookShelfToolbar.vue @@ -16,6 +16,9 @@

{{ $strings.ButtonLatest }}

+ +

{{ $strings.ButtonCalendar }}

+

{{ $strings.ButtonSeries }}

@@ -271,6 +274,9 @@ export default { isPodcastLatestPage() { return this.$route.name === 'library-library-podcast-latest' }, + isCalendarPage() { + return this.$route.name === 'library-library-calendar' + }, isPodcastDownloadQueuePage() { return this.$route.name === 'library-library-podcast-download-queue' },