diff --git a/config/current.ver b/config/current.ver index 9695327..5165303 100644 --- a/config/current.ver +++ b/config/current.ver @@ -1 +1 @@ -1.1.10 \ No newline at end of file +1.1.11 \ No newline at end of file diff --git a/public/assets/js/bridge/rte-editor.js b/public/assets/js/bridge/rte-editor.js index f715082..b0830d4 100644 --- a/public/assets/js/bridge/rte-editor.js +++ b/public/assets/js/bridge/rte-editor.js @@ -173,6 +173,11 @@ const isText = (component.is && component.is('text')) || (component.get && component.get('type') === 'text'); try { + if (isText && component.components) { + try { + component.components(content); + } catch {} + } if (component.set) component.set('content', content); } catch {} if (isText && component.view && component.view.el) {