@xuda.io/runtime-bundle 1.0.661 → 1.0.663

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.
@@ -12393,7 +12393,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12393
12393
  if (arr_value_before_cast.includes(value_from_getter)) {
12394
12394
  value = arr_value_before_cast.filter((item) => item !== value_from_getter);
12395
12395
  } else {
12396
- value = arr_value_before_cast.push(value_from_getter);
12396
+ arr_value_before_cast.push(value_from_getter);
12397
+ value = arr_value_before_cast;
12397
12398
  }
12398
12399
 
12399
12400
  let datasource_changes = {
@@ -12403,7 +12404,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12403
12404
  },
12404
12405
  },
12405
12406
  };
12406
- debugger;
12407
+
12407
12408
  return await func.datasource.update(SESSION_ID, datasource_changes);
12408
12409
  }
12409
12410
 
@@ -10115,7 +10115,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10115
10115
  if (arr_value_before_cast.includes(value_from_getter)) {
10116
10116
  value = arr_value_before_cast.filter((item) => item !== value_from_getter);
10117
10117
  } else {
10118
- value = arr_value_before_cast.push(value_from_getter);
10118
+ arr_value_before_cast.push(value_from_getter);
10119
+ value = arr_value_before_cast;
10119
10120
  }
10120
10121
 
10121
10122
  let datasource_changes = {
@@ -10125,7 +10126,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10125
10126
  },
10126
10127
  },
10127
10128
  };
10128
- debugger;
10129
+
10129
10130
  return await func.datasource.update(SESSION_ID, datasource_changes);
10130
10131
  }
10131
10132