fix(front): null error
This commit is contained in:
parent
2d2ffca918
commit
c53f4fbeeb
|
@ -108,7 +108,7 @@ const trackDetails: {
|
||||||
}[] = [
|
}[] = [
|
||||||
{
|
{
|
||||||
label: t('components.library.TrackDetail.table.track.duration'),
|
label: t('components.library.TrackDetail.table.track.duration'),
|
||||||
trackValue: upload?.value.duration ? time.parse(upload.value.duration) : t('components.library.TrackDetail.notApplicable')
|
trackValue: upload?.value?.duration ? time.parse(upload.value.duration) : t('components.library.TrackDetail.notApplicable')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label:
|
label:
|
||||||
|
|
Loading…
Reference in New Issue