fix(front): remove debug output from upload form

This commit is contained in:
ArneBo 2025-02-11 13:01:03 +01:00
parent eb61ba05c1
commit 01ed8cfb12
1 changed files with 0 additions and 3 deletions

View File

@ -58,7 +58,6 @@ watch(() => props.channel, fetchData, { immediate: true })
{{ t('components.channels.AlbumSelect.label.album') }} {{ t('components.channels.AlbumSelect.label.album') }}
</span> </span>
</label> </label>
{{ albums }}
<select <select
id="album-dropdown" id="album-dropdown"
v-model="value" v-model="value"
@ -73,9 +72,7 @@ watch(() => props.channel, fetchData, { immediate: true })
:value="album.id" :value="album.id"
> >
{{ album.title }} {{ album.title }}
<span>
{{ t('components.channels.AlbumSelect.meta.tracks', album.tracks_count) }} {{ t('components.channels.AlbumSelect.meta.tracks', album.tracks_count) }}
</span>
</option> </option>
</select> </select>
</div> </div>