editing #158

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

View File

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