@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.
|
@@ -32074,7 +32074,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32074
32074
|
if (arr_value_before_cast.includes(value_from_getter)) {
|
|
32075
32075
|
value = arr_value_before_cast.filter((item) => item !== value_from_getter);
|
|
32076
32076
|
} else {
|
|
32077
|
-
|
|
32077
|
+
arr_value_before_cast.push(value_from_getter);
|
|
32078
|
+
value = arr_value_before_cast;
|
|
32078
32079
|
}
|
|
32079
32080
|
|
|
32080
32081
|
let datasource_changes = {
|
|
@@ -32084,7 +32085,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32084
32085
|
},
|
|
32085
32086
|
},
|
|
32086
32087
|
};
|
|
32087
|
-
|
|
32088
|
+
|
|
32088
32089
|
return await func.datasource.update(SESSION_ID, datasource_changes);
|
|
32089
32090
|
}
|
|
32090
32091
|
|