@xuda.io/runtime-bundle 1.0.665 → 1.0.666
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-bundle.js +2 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +2 -1
- package/js/xuda-runtime-slim.min.es.js +2 -1
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +2 -1
- package/js/xuda-worker-bundle.js +2 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3233,7 +3233,8 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3233
3233
|
|
|
3234
3234
|
try {
|
|
3235
3235
|
const row_idx = func.common.find_ROWID_idx(_ds, record_id);
|
|
3236
|
-
if (_ds.data_feed.rows[row_idx][field_id] !== value) {
|
|
3236
|
+
// if (_ds.data_feed.rows[row_idx][field_id] !== value) {
|
|
3237
|
+
if (!_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
|
|
3237
3238
|
_ds.data_feed.rows[row_idx][field_id] = value;
|
|
3238
3239
|
await set_fieldComputed_dependencies(dataSource, field_id, null);
|
|
3239
3240
|
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3233,7 +3233,8 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3233
3233
|
|
|
3234
3234
|
try {
|
|
3235
3235
|
const row_idx = func.common.find_ROWID_idx(_ds, record_id);
|
|
3236
|
-
if (_ds.data_feed.rows[row_idx][field_id] !== value) {
|
|
3236
|
+
// if (_ds.data_feed.rows[row_idx][field_id] !== value) {
|
|
3237
|
+
if (!_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
|
|
3237
3238
|
_ds.data_feed.rows[row_idx][field_id] = value;
|
|
3238
3239
|
await set_fieldComputed_dependencies(dataSource, field_id, null);
|
|
3239
3240
|
|