From 95aa9e325d4f99242776a5813ae8710fd9d10f71 Mon Sep 17 00:00:00 2001 From: DorraJaouad Date: Mon, 1 Jul 2024 11:12:10 +0200 Subject: [PATCH] fix(NcRichContentEditable): update value with the updated content Signed-off-by: DorraJaouad --- src/components/NcRichContenteditable/NcRichContenteditable.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NcRichContenteditable/NcRichContenteditable.vue b/src/components/NcRichContenteditable/NcRichContenteditable.vue index e4740a5688..5db57f42ce 100644 --- a/src/components/NcRichContenteditable/NcRichContenteditable.vue +++ b/src/components/NcRichContenteditable/NcRichContenteditable.vue @@ -1040,6 +1040,7 @@ export default { this.focus() const index = this.tribute.collection.findIndex(collection => collection.trigger === trigger) this.tribute.showMenuForCollection(this.$refs.contenteditable, index) + this.updateValue(this.$refs.contenteditable.innerHTML) document.addEventListener('click', this.hideTribute, true) },