@xuda.io/runtime-bundle 1.0.631 → 1.0.633

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.
@@ -13252,7 +13252,11 @@ 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 || typeof nodeP.attributes === 'undefined')) {
13255
+ if (_.isEmpty(nodeP.attributes)) {
13256
+ break;
13257
+ }
13258
+
13259
+ if (typeof nodeP.attributes[attr] === 'undefined') {
13256
13260
  continue;
13257
13261
  }
13258
13262
 
@@ -10983,7 +10983,11 @@ 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 || typeof nodeP.attributes === 'undefined')) {
10986
+ if (_.isEmpty(nodeP.attributes)) {
10987
+ break;
10988
+ }
10989
+
10990
+ if (typeof nodeP.attributes[attr] === 'undefined') {
10987
10991
  continue;
10988
10992
  }
10989
10993