[web] Remove unused variable and incorrect text

This commit is contained in:
Alain Nussbaumer 2025-08-18 15:49:22 +10:00
parent 02279236f3
commit 3bf17d8b6d
2 changed files with 1 additions and 5 deletions

View File

@ -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()

View File

@ -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
}
}