@xuda.io/runtime-bundle 1.0.1387 → 1.0.1388

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.
@@ -13412,6 +13412,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
13412
13412
  }
13413
13413
  },
13414
13414
  'xu-exp': async function ($elm, val) {
13415
+ // fix to prevent breaking the code executing func.expression.get-- Jan 7,26
13416
+ if (!SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP]) return {};
13417
+
13415
13418
  let exp = val.value === null ? true : val.value;
13416
13419
 
13417
13420
  let exp_ret = await func.expression.get(SESSION_ID, exp, paramsP.dsSessionP, 'UI Attr EXP', SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP].currentRecordId, null, null, null, null, null, $elm.data().xuData.iterate_info);
@@ -11137,6 +11137,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
11137
11137
  }
11138
11138
  },
11139
11139
  'xu-exp': async function ($elm, val) {
11140
+ // fix to prevent breaking the code executing func.expression.get-- Jan 7,26
11141
+ if (!SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP]) return {};
11142
+
11140
11143
  let exp = val.value === null ? true : val.value;
11141
11144
 
11142
11145
  let exp_ret = await func.expression.get(SESSION_ID, exp, paramsP.dsSessionP, 'UI Attr EXP', SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP].currentRecordId, null, null, null, null, null, $elm.data().xuData.iterate_info);