@xuda.io/runtime-bundle 1.0.888 → 1.0.889

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.
@@ -11430,7 +11430,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11430
11430
  .filter(function () {
11431
11431
  // // look if the changed field include in the calling in parameters
11432
11432
  const elm_data = $(this).data();
11433
- const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : '';
11433
+ const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : undefined;
11434
11434
  let attr = [];
11435
11435
 
11436
11436
  $.each(elm_data?.xuAttributes, function (key, val) {
@@ -9157,7 +9157,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9157
9157
  .filter(function () {
9158
9158
  // // look if the changed field include in the calling in parameters
9159
9159
  const elm_data = $(this).data();
9160
- const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : '';
9160
+ const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : undefined;
9161
9161
  let attr = [];
9162
9162
 
9163
9163
  $.each(elm_data?.xuAttributes, function (key, val) {