Fix unhandled error

This commit is contained in:
wvffle 2022-07-21 18:46:00 +00:00 committed by Georg Krause
parent 1f27692e37
commit 8ef28e3aa3
2 changed files with 1 additions and 2 deletions

View File

@ -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>

View File

@ -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>