@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -11439,6 +11439,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11439
11439
|
if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
|
|
11440
11440
|
let exp_val_for_parameter_in_validation = _.clone(exp);
|
|
11441
11441
|
for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
|
|
11442
|
+
if (!param_val.includes('@')) continue;
|
|
11442
11443
|
exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
|
|
11443
11444
|
}
|
|
11444
11445
|
return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);
|
|
@@ -9166,6 +9166,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9166
9166
|
if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
|
|
9167
9167
|
let exp_val_for_parameter_in_validation = _.clone(exp);
|
|
9168
9168
|
for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
|
|
9169
|
+
if (!param_val.includes('@')) continue;
|
|
9169
9170
|
exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
|
|
9170
9171
|
}
|
|
9171
9172
|
return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);
|