[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

File diff suppressed because one or more lines are too long

View File

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

View File

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