This commit is contained in:
2026-01-27 00:39:43 +01:00
parent 32b686dd83
commit b16bfcc905
2 changed files with 6 additions and 1 deletions

View File

@@ -1 +1 @@
1.1.10 1.1.11

View File

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