adasdas
This commit is contained in:
@@ -1 +1 @@
|
|||||||
1.1.41
|
1.1.42
|
||||||
@@ -175,7 +175,8 @@
|
|||||||
try {
|
try {
|
||||||
if (isText && component.components) {
|
if (isText && component.components) {
|
||||||
try {
|
try {
|
||||||
component.components(content);
|
const comps = component.components();
|
||||||
|
if (comps && comps.reset) comps.reset();
|
||||||
} catch {}
|
} catch {}
|
||||||
}
|
}
|
||||||
if (component.set) component.set('content', content);
|
if (component.set) component.set('content', content);
|
||||||
|
|||||||
@@ -437,7 +437,8 @@
|
|||||||
syncing.add(target);
|
syncing.add(target);
|
||||||
if (target.components) {
|
if (target.components) {
|
||||||
try {
|
try {
|
||||||
target.components(viewHtml);
|
const comps = target.components();
|
||||||
|
if (comps && comps.reset) comps.reset();
|
||||||
} catch {}
|
} catch {}
|
||||||
}
|
}
|
||||||
if (target.set) target.set('content', viewHtml);
|
if (target.set) target.set('content', viewHtml);
|
||||||
@@ -473,7 +474,10 @@
|
|||||||
try {
|
try {
|
||||||
syncing.add(target);
|
syncing.add(target);
|
||||||
if (target.components) {
|
if (target.components) {
|
||||||
try { target.components(viewHtml); } catch {}
|
try {
|
||||||
|
const comps = target.components();
|
||||||
|
if (comps && comps.reset) comps.reset();
|
||||||
|
} catch {}
|
||||||
}
|
}
|
||||||
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');
|
||||||
|
|||||||
Reference in New Issue
Block a user