This commit is contained in:
2026-01-28 00:00:35 +01:00
parent 33a04ef295
commit 90084c1d5f
2 changed files with 9 additions and 1 deletions

View File

@@ -1 +1 @@
1.1.32 1.1.33

View File

@@ -415,6 +415,14 @@
if (target.components) target.components(viewHtml); if (target.components) target.components(viewHtml);
if (target.set) target.set('content', viewHtml); if (target.set) target.set('content', viewHtml);
target.trigger && target.trigger('change:content'); target.trigger && target.trigger('change:content');
const reapply = () => {
try {
const current = String(target.view.el.innerHTML || '').trim();
if (current !== viewHtml) target.view.el.innerHTML = viewHtml;
} catch {}
};
setTimeout(reapply, 0);
setTimeout(reapply, 60);
} catch {} finally { } catch {} finally {
syncing.delete(target); syncing.delete(target);
} }