@xuda.io/runtime-bundle 1.0.1073 → 1.0.1074
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12676,7 +12676,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12676
12676
|
|
|
12677
12677
|
$.each(new_$div.find('*'), (key, val) => {
|
|
12678
12678
|
const _xuAttributes = $(val)?.data()?.xuAttributes;
|
|
12679
|
-
if (found_parent_vars) return;
|
|
12679
|
+
if (found_parent_vars || !_xuAttributes) return;
|
|
12680
12680
|
for (const [attr_key, attr_val] of Object.entries(_xuAttributes)) {
|
|
12681
12681
|
if (found_parent_vars) break;
|
|
12682
12682
|
for (const [key, val] of Object.entries(parent_fields)) {
|
|
@@ -10401,7 +10401,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10401
10401
|
|
|
10402
10402
|
$.each(new_$div.find('*'), (key, val) => {
|
|
10403
10403
|
const _xuAttributes = $(val)?.data()?.xuAttributes;
|
|
10404
|
-
if (found_parent_vars) return;
|
|
10404
|
+
if (found_parent_vars || !_xuAttributes) return;
|
|
10405
10405
|
for (const [attr_key, attr_val] of Object.entries(_xuAttributes)) {
|
|
10406
10406
|
if (found_parent_vars) break;
|
|
10407
10407
|
for (const [key, val] of Object.entries(parent_fields)) {
|