fix(front): trackbase errors

This commit is contained in:
ArneBo 2025-04-09 16:29:32 +02:00
parent 8122426cf4
commit 817787db06
1 changed files with 6 additions and 1 deletions

View File

@ -163,10 +163,15 @@ watch(showDeleteModal, (newValue) => {
:h1="track.title" :h1="track.title"
:action="{ :action="{
text: labels.download, text: labels.download,
// @ts-ignore
to: downloadUrl, to: downloadUrl,
// @ts-ignore
solid: true, solid: true,
// @ts-ignore
primary: true, primary: true,
// @ts-ignore
icon: 'bi-download', icon: 'bi-download',
// @ts-ignore
lowHeight: true lowHeight: true
}" }"
page-heading page-heading
@ -364,7 +369,7 @@ watch(showDeleteModal, (newValue) => {
:title="t('components.library.TrackBase.modal.embed.header')" :title="t('components.library.TrackBase.modal.embed.header')"
> >
<embed-wizard <embed-wizard
:id="track?.id || undefined" :id="track?.id ?? 0"
type="track" type="track"
/> />