This commit is contained in:
2026-01-27 01:36:23 +01:00
parent b66d0c5d49
commit cf476632e2
3 changed files with 25 additions and 15 deletions

View File

@@ -173,12 +173,13 @@
const isText = (component.is && component.is('text'))
|| (component.get && component.get('type') === 'text');
try {
if (component.set) component.set('content', content);
if (isText && component.components) {
try {
component.components(content);
const comps = component.components();
if (comps && comps.length) comps.reset();
} catch {}
}
if (component.set) component.set('content', content);
} catch {}
if (isText && component.view && component.view.el) {
try {