Display attachment description updates properly

This commit is contained in:
Tusooa Zhu 2022-06-11 18:06:46 -04:00
parent 77e6aa6968
commit 131febe653
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@
:icon="placeholderIconClass"
/>
<p>
{{ localDescription }}
{{ edit ? localDescription : attachment.description }}
</p>
</a>
@ -244,7 +244,7 @@
</span>
</div>
<div
v-if="size !== 'hide' && !hideDescription && (edit || (localDescription && showDescription))"
v-if="size !== 'hide' && !hideDescription && (edit || (attachment.description && showDescription))"
class="description-container"
:class="{ '-static': !edit }"
>
@ -257,7 +257,7 @@
@keydown.enter.prevent=""
>
<p v-else>
{{ localDescription }}
{{ attachment.description }}
</p>
</div>
</div>