forked from FoundKeyGang/FoundKey
Fix: optional chaining (#6747)
This commit is contained in:
parent
190d1bbf3c
commit
7dc789f470
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
<footer>
|
||||
<span>{{ image.type }}</span>
|
||||
<span>{{ bytes(image.size) }}</span>
|
||||
<span v-if="image.properties?.width">{{ number(image.properties.width) }}px × {{ number(image.properties.height) }}px</span>
|
||||
<span v-if="image.properties && image.properties.width">{{ number(image.properties.width) }}px × {{ number(image.properties.height) }}px</span>
|
||||
</footer>
|
||||
</div>
|
||||
</MkModal>
|
||||
|
|
Loading…
Reference in a new issue