editing #158

Merged
floatingghost merged 21 commits from editing into develop 2022-09-06 19:25:04 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 356bb5d05c - Show all commits

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 }"
>
@ -259,7 +259,7 @@
@input="resize"
/>
<p v-else>
{{ localDescription }}
{{ attachment.description }}
</p>
</div>
</div>