@xuda.io/runtime-bundle 1.0.1069 → 1.0.1070

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.
@@ -32353,10 +32353,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32353
32353
  const xu_ui_id = $elm.attr('xu-ui-id');
32354
32354
  let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id + xu_render_cache_id]?.$div.clone(true);
32355
32355
 
32356
- if (!new_$div?.$div) {
32356
+ if (!new_$div) {
32357
32357
  // validate if $div contains fields from parent ds
32358
32358
  const parent_fields = get_parent_ds_fields(SESSION_ID, paramsP.dsSessionP);
32359
- const div_str = JSON.stringify(new_$div.$div.children());
32359
+ const div_str = JSON.stringify(new_$div.children());
32360
32360
  let found = false;
32361
32361
  for (const [key, val] of Object.entries(parent_fields)) {
32362
32362
  if (div_str.includes('@' + key)) {