[web] Fix the display of channels in track modal dialogs

This commit is contained in:
Alain Nussbaumer
2025-06-09 09:57:39 +02:00
parent 939dab6a48
commit 0cfd753770
3 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ export default {
key: 'property.quality',
value: this.$t('dialog.track.quality-value', {
bitrate: this.item.bitrate,
channels: this.$t('data.channels', this.item.channels),
count: this.item.channels,
format: this.item.type,
samplerate: this.item.samplerate
})

View File

@@ -68,7 +68,7 @@ export default {
this.item.data_kind !== 'spotify' &&
this.$t('dialog.track.quality-value', {
bitrate: this.item.bitrate,
channels: this.$t('data.channels', this.item.channels),
count: this.item.channels,
format: this.item.type,
samplerate: this.item.samplerate
})