This commit is contained in:
2026-01-28 01:33:41 +01:00
parent 2665b01a74
commit 8517febcb4
3 changed files with 4 additions and 7 deletions

View File

@@ -1 +1 @@
1.1.42 1.1.43

View File

@@ -175,8 +175,7 @@
try { try {
if (isText && component.components) { if (isText && component.components) {
try { try {
const comps = component.components(); component.components(content);
if (comps && comps.reset) comps.reset();
} catch {} } catch {}
} }
if (component.set) component.set('content', content); if (component.set) component.set('content', content);

View File

@@ -437,8 +437,7 @@
syncing.add(target); syncing.add(target);
if (target.components) { if (target.components) {
try { try {
const comps = target.components(); target.components(viewHtml);
if (comps && comps.reset) comps.reset();
} catch {} } catch {}
} }
if (target.set) target.set('content', viewHtml); if (target.set) target.set('content', viewHtml);
@@ -475,8 +474,7 @@
syncing.add(target); syncing.add(target);
if (target.components) { if (target.components) {
try { try {
const comps = target.components(); target.components(viewHtml);
if (comps && comps.reset) comps.reset();
} catch {} } catch {}
} }
if (target.set) target.set('content', viewHtml); if (target.set) target.set('content', viewHtml);