@xuda.io/runtime-bundle 1.0.734 → 1.0.735

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.
@@ -11646,9 +11646,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11646
11646
  }
11647
11647
  var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
11648
11648
 
11649
- if (!attr_value & (elem_val.$elm[0].tagName === 'XURENDER')) continue; // bypass job
11649
+ if (!attr_value && elem_val.$elm[0].tagName === 'XURENDER') continue; // bypass job
11650
11650
 
11651
- if (attr_value & (elem_val.$elm[0].tagName !== 'XURENDER')) {
11651
+ if (attr_value && elem_val.$elm[0].tagName !== 'XURENDER') {
11652
11652
  await add_execute_queue('execute_xu_all_attributes');
11653
11653
 
11654
11654
  continue; // bypass render job
@@ -9356,9 +9356,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9356
9356
  }
9357
9357
  var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
9358
9358
 
9359
- if (!attr_value & (elem_val.$elm[0].tagName === 'XURENDER')) continue; // bypass job
9359
+ if (!attr_value && elem_val.$elm[0].tagName === 'XURENDER') continue; // bypass job
9360
9360
 
9361
- if (attr_value & (elem_val.$elm[0].tagName !== 'XURENDER')) {
9361
+ if (attr_value && elem_val.$elm[0].tagName !== 'XURENDER') {
9362
9362
  await add_execute_queue('execute_xu_all_attributes');
9363
9363
 
9364
9364
  continue; // bypass render job