From 4513834458f25c46381673a6108df5755e33109d 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 b1a3fbbd4f..c75225d539 100644 --- a/src/components/NcRichContenteditable/NcRichContenteditable.vue +++ b/src/components/NcRichContenteditable/NcRichContenteditable.vue @@ -1029,6 +1029,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) },