@xuda.io/runtime-bundle 1.0.661 → 1.0.662
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
|
@@ -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
|
-
|
|
12396
|
+
arr_value_before_cast.push(value_from_getter);
|
|
12397
|
+
value = arr_value_before_cast;
|
|
12397
12398
|
}
|
|
12398
12399
|
|
|
12399
12400
|
let datasource_changes = {
|
|
@@ -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
|
-
|
|
10118
|
+
arr_value_before_cast.push(value_from_getter);
|
|
10119
|
+
value = arr_value_before_cast;
|
|
10119
10120
|
}
|
|
10120
10121
|
|
|
10121
10122
|
let datasource_changes = {
|