From 8ba17db877c53d1feba2c1a1c31a38805760d4c3 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 6 Oct 2024 15:58:23 -0500 Subject: [PATCH] Fix authors button in SideRail selected --- client/components/app/SideRail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/app/SideRail.vue b/client/components/app/SideRail.vue index 183bf96d..dbbc4d26 100644 --- a/client/components/app/SideRail.vue +++ b/client/components/app/SideRail.vue @@ -180,7 +180,7 @@ export default { return this.$route.name === 'library-library-series-id' || this.paramId === 'series' }, isAuthorsPage() { - return this.$route.name === 'library-library-authors' + return this.libraryBookshelfPage && this.paramId === 'authors' }, isNarratorsPage() { return this.$route.name === 'library-library-narrators'