@xuda.io/runtime-bundle 1.0.1073 → 1.0.1075
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -32338,7 +32338,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32338
32338
|
const init_render = async function () {
|
|
32339
32339
|
nodeP.xu_render_made = value;
|
|
32340
32340
|
if (!value) {
|
|
32341
|
-
return { has_xu_render_attribute: true, xu_render_in_process: true };
|
|
32341
|
+
return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
|
|
32342
32342
|
}
|
|
32343
32343
|
return { has_xu_render_attribute: true };
|
|
32344
32344
|
};
|
|
@@ -32360,7 +32360,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32360
32360
|
|
|
32361
32361
|
$.each(new_$div.find('*'), (key, val) => {
|
|
32362
32362
|
const _xuAttributes = $(val)?.data()?.xuAttributes;
|
|
32363
|
-
if (found_parent_vars) return;
|
|
32363
|
+
if (found_parent_vars || !_xuAttributes) return;
|
|
32364
32364
|
for (const [attr_key, attr_val] of Object.entries(_xuAttributes)) {
|
|
32365
32365
|
if (found_parent_vars) break;
|
|
32366
32366
|
for (const [key, val] of Object.entries(parent_fields)) {
|