@xuda.io/runtime-bundle 1.0.669 → 1.0.671
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
|
@@ -12400,7 +12400,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12400
12400
|
let value_from_getter = bind.getter($elm[0]);
|
|
12401
12401
|
let value;
|
|
12402
12402
|
if (arr_value_before_cast.includes(value_from_getter)) {
|
|
12403
|
-
value = arr_value_before_cast.filter((item) => item
|
|
12403
|
+
value = arr_value_before_cast.filter((item) => !_.isEqual(item, value_from_getter));
|
|
12404
12404
|
} else {
|
|
12405
12405
|
arr_value_before_cast.push(value_from_getter);
|
|
12406
12406
|
value = arr_value_before_cast;
|
|
@@ -10122,7 +10122,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10122
10122
|
let value_from_getter = bind.getter($elm[0]);
|
|
10123
10123
|
let value;
|
|
10124
10124
|
if (arr_value_before_cast.includes(value_from_getter)) {
|
|
10125
|
-
value = arr_value_before_cast.filter((item) => item
|
|
10125
|
+
value = arr_value_before_cast.filter((item) => !_.isEqual(item, value_from_getter));
|
|
10126
10126
|
} else {
|
|
10127
10127
|
arr_value_before_cast.push(value_from_getter);
|
|
10128
10128
|
value = arr_value_before_cast;
|