From aa331b8312b52106041b0905e20c49c7fb539fca Mon Sep 17 00:00:00 2001 From: Lars Gebhardt-Kusche Date: Tue, 27 Jan 2026 22:21:02 +0100 Subject: [PATCH] asdad --- config/current.ver | 2 +- public/assets/js/bridge/rte-editor.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/current.ver b/config/current.ver index 9d0f128..0187631 100644 --- a/config/current.ver +++ b/config/current.ver @@ -1 +1 @@ -1.1.23 \ No newline at end of file +1.1.24 \ 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 539e736..3cfe70f 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) {