From ce6b93802d9733d08fafefdfdda5ff3e26e508db Mon Sep 17 00:00:00 2001 From: ArneBo Date: Sat, 3 May 2025 14:41:17 +0200 Subject: [PATCH] feat(style): add brackets around tracks count in album select --- front/src/components/channels/AlbumSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/channels/AlbumSelect.vue b/front/src/components/channels/AlbumSelect.vue index 9134fa75c..b7cef5096 100644 --- a/front/src/components/channels/AlbumSelect.vue +++ b/front/src/components/channels/AlbumSelect.vue @@ -81,7 +81,7 @@ watch(() => props.channel, fetchData, { immediate: true }) :value="album.id" > {{ album.title }} - {{ t('components.channels.AlbumSelect.meta.tracks', album.tracks_count) }} + {{ `(${t('components.channels.AlbumSelect.meta.tracks', album.tracks_count)})` }}