From 3bf17d8b6d31e41c21438c6942bf64696aba9a55 Mon Sep 17 00:00:00 2001 From: Alain Nussbaumer Date: Mon, 18 Aug 2025 15:49:22 +1000 Subject: [PATCH] [web] Remove unused variable and incorrect text --- web-src/src/components/NavbarBottom.vue | 2 -- web-src/src/pages/PagePlaylistTracksSpotify.vue | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/web-src/src/components/NavbarBottom.vue b/web-src/src/components/NavbarBottom.vue index 3309d6b4..dcdbeaf8 100644 --- a/web-src/src/components/NavbarBottom.vue +++ b/web-src/src/components/NavbarBottom.vue @@ -76,7 +76,6 @@ import ControlPlayerPrevious from '@/components/ControlPlayerPrevious.vue' import ControlPlayerRepeat from '@/components/ControlPlayerRepeat.vue' import ControlPlayerShuffle from '@/components/ControlPlayerShuffle.vue' import ControlStreamVolume from '@/components/ControlStreamVolume.vue' -import { useNotificationsStore } from '@/stores/notifications' import { useOutputsStore } from '@/stores/outputs' import { useQueueStore } from '@/stores/queue' import { useUIStore } from '@/stores/ui' @@ -100,7 +99,6 @@ export default { }, setup() { return { - notificationsStore: useNotificationsStore(), outputsStore: useOutputsStore(), queueStore: useQueueStore(), uiStore: useUIStore() diff --git a/web-src/src/pages/PagePlaylistTracksSpotify.vue b/web-src/src/pages/PagePlaylistTracksSpotify.vue index 72ed6252..7fded022 100644 --- a/web-src/src/pages/PagePlaylistTracksSpotify.vue +++ b/web-src/src/pages/PagePlaylistTracksSpotify.vue @@ -86,9 +86,7 @@ export default { heading() { if (this.playlist.name) { return { - subtitle: [ - { count: this.playlist.tracks.total, key: 'data.playlists' } - ], + subtitle: [{ count: this.playlist.tracks.total, key: 'data.tracks' }], title: this.playlist.name } }