Use watch to change localDescription

This commit is contained in:
Sean King 2022-06-26 13:25:36 -06:00
parent 08c9aa4bf3
commit 8c7f4ab481
No known key found for this signature in database
GPG Key ID: 510C52BACD6E7257
2 changed files with 6 additions and 3 deletions

View File

@ -129,6 +129,9 @@ const Attachment = {
...mapGetters(['mergedConfig'])
},
watch: {
'attachment.description' (newVal) {
this.localDescription = newVal
},
localDescription (newVal) {
this.onEdit(newVal)
}

View File

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