@xuda.io/runtime-bundle 1.0.738 → 1.0.739

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.
@@ -13098,7 +13098,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
13098
13098
  for await (let [prop_name, prop_val] of Object.entries(properties)) {
13099
13099
  prop_val.value = value?.attributes?.[prop_name];
13100
13100
  if (value?.attributes?.[`xu-exp:${prop_name}`]) {
13101
- const res = await func.expression.get(SESSION_ID, `xu-exp:${prop_name}`, paramsP.dsSessionP, 'UI Attr EXP');
13101
+ const res = await func.expression.get(SESSION_ID, value?.attributes?.[`xu-exp:${prop_name}`], paramsP.dsSessionP, 'UI Attr EXP');
13102
13102
  prop_val.value = res.result;
13103
13103
  }
13104
13104
  }
@@ -10808,7 +10808,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10808
10808
  for await (let [prop_name, prop_val] of Object.entries(properties)) {
10809
10809
  prop_val.value = value?.attributes?.[prop_name];
10810
10810
  if (value?.attributes?.[`xu-exp:${prop_name}`]) {
10811
- const res = await func.expression.get(SESSION_ID, `xu-exp:${prop_name}`, paramsP.dsSessionP, 'UI Attr EXP');
10811
+ const res = await func.expression.get(SESSION_ID, value?.attributes?.[`xu-exp:${prop_name}`], paramsP.dsSessionP, 'UI Attr EXP');
10812
10812
  prop_val.value = res.result;
10813
10813
  }
10814
10814
  }