@xuda.io/runtime-bundle 1.0.1005 → 1.0.1007

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.
@@ -32305,7 +32305,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32305
32305
 
32306
32306
  ////////////
32307
32307
  const cache_str = get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
32308
-
32308
+ const xu_ui_id = $elm.attr('xu-ui-id');
32309
32309
  let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[cache_str]?.$container.clone(true);
32310
32310
 
32311
32311
  /////////////
@@ -34572,7 +34572,7 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
34572
34572
  let str = '';
34573
34573
 
34574
34574
  for (const [key, val] of Object.entries(data)) {
34575
- str += val;
34575
+ str += typeof val !== 'undefined' ? JSON.stringify(val) : '';
34576
34576
  }
34577
34577
 
34578
34578
  if (typeof _ds.parentDataSourceNo !== 'undefined') {