From 8e0319994eee56e48ddda52adc18dad087e42d4f Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 15 May 2025 17:22:20 -0500 Subject: [PATCH] Update total results in global search component --- client/components/controls/GlobalSearch.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/controls/GlobalSearch.vue b/client/components/controls/GlobalSearch.vue index 185257a3..6f3a819b 100644 --- a/client/components/controls/GlobalSearch.vue +++ b/client/components/controls/GlobalSearch.vue @@ -125,7 +125,7 @@ export default { return this.$store.state.libraries.currentLibraryId }, totalResults() { - return this.bookResults.length + this.seriesResults.length + this.authorResults.length + this.tagResults.length + this.genreResults.length + this.podcastResults.length + this.narratorResults.length + return this.bookResults.length + this.seriesResults.length + this.authorResults.length + this.tagResults.length + this.genreResults.length + this.podcastResults.length + this.narratorResults.length + this.episodeResults.length } }, methods: {