@xuda.io/runtime-bundle 1.0.645 → 1.0.646
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
|
@@ -13274,7 +13274,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13274
13274
|
// continue;
|
|
13275
13275
|
// }
|
|
13276
13276
|
|
|
13277
|
-
if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP
|
|
13277
|
+
if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty('xu-render') && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
|
|
13278
13278
|
continue;
|
|
13279
13279
|
}
|
|
13280
13280
|
|
|
@@ -10996,7 +10996,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
10996
10996
|
// continue;
|
|
10997
10997
|
// }
|
|
10998
10998
|
|
|
10999
|
-
if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP
|
|
10999
|
+
if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty('xu-render') && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
|
|
11000
11000
|
continue;
|
|
11001
11001
|
}
|
|
11002
11002
|
|