From 173139515fb7fd3339089d5324a172f074c5e134 Mon Sep 17 00:00:00 2001 From: Alain Nussbaumer Date: Sat, 1 Mar 2025 07:51:46 +0100 Subject: [PATCH] [web] Hide quality for Spotify tracks --- web-src/src/components/ModalDialogTrack.vue | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/web-src/src/components/ModalDialogTrack.vue b/web-src/src/components/ModalDialogTrack.vue index 56bd53e2..ab575c68 100644 --- a/web-src/src/components/ModalDialogTrack.vue +++ b/web-src/src/components/ModalDialogTrack.vue @@ -61,12 +61,14 @@ export default { }, { label: 'property.quality', - value: this.item.data_kind !== 'spotify' && this.$t('dialog.track.quality-value', { - format: this.item.type, - bitrate: this.item.bitrate, - channels: this.$t('count.channels', this.item.channels), - samplerate: this.item.samplerate - }) + value: + this.item.data_kind !== 'spotify' && + this.$t('dialog.track.quality-value', { + format: this.item.type, + bitrate: this.item.bitrate, + channels: this.$t('count.channels', this.item.channels), + samplerate: this.item.samplerate + }) }, { label: 'property.added-on',