@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.
@@ -4857,7 +4857,8 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
4857
4857
 
4858
4858
  try {
4859
4859
  const row_idx = func.common.find_ROWID_idx(_ds, record_id);
4860
- if (_ds.data_feed.rows[row_idx][field_id] !== value) {
4860
+ // if (_ds.data_feed.rows[row_idx][field_id] !== value) {
4861
+ if (!_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
4861
4862
  _ds.data_feed.rows[row_idx][field_id] = value;
4862
4863
  await set_fieldComputed_dependencies(dataSource, field_id, null);
4863
4864
 
@@ -4858,7 +4858,8 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
4858
4858
 
4859
4859
  try {
4860
4860
  const row_idx = func.common.find_ROWID_idx(_ds, record_id);
4861
- if (_ds.data_feed.rows[row_idx][field_id] !== value) {
4861
+ // if (_ds.data_feed.rows[row_idx][field_id] !== value) {
4862
+ if (!_.isEqual(_ds.data_feed.rows[row_idx][field_id], value)) {
4862
4863
  _ds.data_feed.rows[row_idx][field_id] = value;
4863
4864
  await set_fieldComputed_dependencies(dataSource, field_id, null);
4864
4865