@xuda.io/runtime-bundle 1.0.294 → 1.0.296

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.
@@ -30500,14 +30500,13 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
30500
30500
  if (_ds?.progDataSource?.datasetOutputField) {
30501
30501
  let datasource_changes = {};
30502
30502
 
30503
- let _ds = _session.DS_GLB[_ds.dsSessionP];
30504
30503
  if (!datasource_changes[_ds.dsSession]) {
30505
30504
  datasource_changes[_ds.dsSession] = {};
30506
30505
  }
30507
30506
  if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
30508
30507
  datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
30509
30508
 
30510
- datasource_changes[_ds.dsSession][ret_get_value.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
30509
+ datasource_changes[_ds.dsSession][_ds.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
30511
30510
  await func.datasource.update(SESSION_ID, datasource_changes);
30512
30511
  }
30513
30512
  }