[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 ControlPlayerRepeat from '@/components/ControlPlayerRepeat.vue'
import ControlPlayerShuffle from '@/components/ControlPlayerShuffle.vue' import ControlPlayerShuffle from '@/components/ControlPlayerShuffle.vue'
import ControlStreamVolume from '@/components/ControlStreamVolume.vue' import ControlStreamVolume from '@/components/ControlStreamVolume.vue'
import { useNotificationsStore } from '@/stores/notifications'
import { useOutputsStore } from '@/stores/outputs' import { useOutputsStore } from '@/stores/outputs'
import { useQueueStore } from '@/stores/queue' import { useQueueStore } from '@/stores/queue'
import { useUIStore } from '@/stores/ui' import { useUIStore } from '@/stores/ui'
@ -100,7 +99,6 @@ export default {
}, },
setup() { setup() {
return { return {
notificationsStore: useNotificationsStore(),
outputsStore: useOutputsStore(), outputsStore: useOutputsStore(),
queueStore: useQueueStore(), queueStore: useQueueStore(),
uiStore: useUIStore() uiStore: useUIStore()

View File

@ -86,9 +86,7 @@ export default {
heading() { heading() {
if (this.playlist.name) { if (this.playlist.name) {
return { return {
subtitle: [ subtitle: [{ count: this.playlist.tracks.total, key: 'data.tracks' }],
{ count: this.playlist.tracks.total, key: 'data.playlists' }
],
title: this.playlist.name title: this.playlist.name
} }
} }