@xuda.io/runtime-bundle 1.0.630 → 1.0.631
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
|
@@ -13252,7 +13252,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13252
13252
|
// continue;
|
|
13253
13253
|
// }
|
|
13254
13254
|
|
|
13255
|
-
if (_.isEmpty(nodeP.attributes)) {
|
|
13255
|
+
if (_.isEmpty(nodeP.attributes || typeof nodeP.attributes === 'undefined')) {
|
|
13256
13256
|
continue;
|
|
13257
13257
|
}
|
|
13258
13258
|
|
|
@@ -10983,7 +10983,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
10983
10983
|
// continue;
|
|
10984
10984
|
// }
|
|
10985
10985
|
|
|
10986
|
-
if (_.isEmpty(nodeP.attributes)) {
|
|
10986
|
+
if (_.isEmpty(nodeP.attributes || typeof nodeP.attributes === 'undefined')) {
|
|
10987
10987
|
continue;
|
|
10988
10988
|
}
|
|
10989
10989
|
|