@xuda.io/runtime-bundle 1.0.900 → 1.0.901

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.
@@ -31125,6 +31125,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31125
31125
  if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
31126
31126
  let exp_val_for_parameter_in_validation = _.clone(exp);
31127
31127
  for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
31128
+ if (!param_val.includes('@')) continue;
31128
31129
  exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
31129
31130
  }
31130
31131
  return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);