fix: error accessing thumbnail when instance is not defined
This commit is contained in:
parent
b320b37e52
commit
a57ce2db7b
1 changed files with 1 additions and 1 deletions
|
@ -10,6 +10,6 @@ catch (err) {
|
|||
|
||||
<template>
|
||||
<MainContent text-base grid gap-3 m3>
|
||||
<img rounded-3 :src="instance.thumbnail.url">
|
||||
<img v-if="instance !== undefined" rounded-3 :src="instance.thumbnail.url">
|
||||
</MainContent>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue