diff --git a/frontend/src/components/FreeleapsEditor.vue b/frontend/src/components/FreeleapsEditor.vue index d29fa1e..2290dc8 100644 --- a/frontend/src/components/FreeleapsEditor.vue +++ b/frontend/src/components/FreeleapsEditor.vue @@ -307,9 +307,11 @@ export default { updateAction($event) { let html = $event.target.innerHTML || '' - setTimeout(() => { - this.$emit('update:content', html) - }) + //TODO: need to revise afte confirming the timeout approach is working + this.$emit('update:content', html) + // setTimeout(() => { + // this.$emit('update:content', html) + // }) } } }