diff --git a/js/ckeditor/src/plugins/update-input-on-change/update-input-on-change.plugin.ts b/js/ckeditor/src/plugins/update-input-on-change/update-input-on-change.plugin.ts index bb0025b8b..6670c60f4 100644 --- a/js/ckeditor/src/plugins/update-input-on-change/update-input-on-change.plugin.ts +++ b/js/ckeditor/src/plugins/update-input-on-change/update-input-on-change.plugin.ts @@ -21,8 +21,8 @@ export default class UpdateInputOnChange extends Plugin { // only when input and textarea are different if(oInputElement.value !== oEditor.getData()) { oInputElement.value = oEditor.getData(); - const oEvent = new Event('change'); - oInputElement.dispatchEvent(oEvent); + // const oEvent = new Event('change'); + // oInputElement.dispatchEvent(oEvent); } });