@xuda.io/runtime-bundle 1.0.1038 → 1.0.1040

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.
@@ -11770,10 +11770,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11770
11770
  debugger;
11771
11771
  // $.each(_$elem, function (key, val) {
11772
11772
  for await (const [key, val] of Object.entries(_$elem)) {
11773
+ if (key === 'length') break;
11773
11774
  if ($(val).data().xuData.node) {
11774
11775
  // $.each($(val).data().xuData.node.children, function (key, node) {
11775
11776
  for await (const node of $(val).data().xuData.node.children) {
11776
- if (item.id !== node.id) return true;
11777
+ if (item.id !== node.id) continue;
11777
11778
 
11778
11779
  if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
11779
11780
  const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
@@ -9495,10 +9495,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9495
9495
  debugger;
9496
9496
  // $.each(_$elem, function (key, val) {
9497
9497
  for await (const [key, val] of Object.entries(_$elem)) {
9498
+ if (key === 'length') break;
9498
9499
  if ($(val).data().xuData.node) {
9499
9500
  // $.each($(val).data().xuData.node.children, function (key, node) {
9500
9501
  for await (const node of $(val).data().xuData.node.children) {
9501
- if (item.id !== node.id) return true;
9502
+ if (item.id !== node.id) continue;
9502
9503
 
9503
9504
  if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
9504
9505
  const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];