Fix unhandled error
This commit is contained in:
parent
1f27692e37
commit
8ef28e3aa3
|
@ -87,7 +87,7 @@ const updatedAgo = computed(() => moment(props.object.artist?.modification_date)
|
||||||
:truncate-size="20"
|
:truncate-size="20"
|
||||||
:limit="2"
|
:limit="2"
|
||||||
:show-more="false"
|
:show-more="false"
|
||||||
:tags="object.artist.tags"
|
:tags="object.artist.tags ?? []"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -28,7 +28,6 @@ const tags = computed(() => {
|
||||||
|
|
||||||
return props.tags.slice(0, props.limit)
|
return props.tags.slice(0, props.limit)
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue