@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.
- package/js/xuda-runtime-bundle.js +1 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +1 -2
- package/js/xuda-runtime-slim.min.es.js +1 -2
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -2
- package/js/xuda-worker-bundle.js +1 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3623,14 +3623,13 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3623
3623
|
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3624
3624
|
let datasource_changes = {};
|
|
3625
3625
|
|
|
3626
|
-
let _ds = _session.DS_GLB[_ds.dsSessionP];
|
|
3627
3626
|
if (!datasource_changes[_ds.dsSession]) {
|
|
3628
3627
|
datasource_changes[_ds.dsSession] = {};
|
|
3629
3628
|
}
|
|
3630
3629
|
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3631
3630
|
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3632
3631
|
|
|
3633
|
-
datasource_changes[_ds.dsSession][
|
|
3632
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3634
3633
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3635
3634
|
}
|
|
3636
3635
|
}
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3623,14 +3623,13 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
3623
3623
|
if (_ds?.progDataSource?.datasetOutputField) {
|
|
3624
3624
|
let datasource_changes = {};
|
|
3625
3625
|
|
|
3626
|
-
let _ds = _session.DS_GLB[_ds.dsSessionP];
|
|
3627
3626
|
if (!datasource_changes[_ds.dsSession]) {
|
|
3628
3627
|
datasource_changes[_ds.dsSession] = {};
|
|
3629
3628
|
}
|
|
3630
3629
|
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
3631
3630
|
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
3632
3631
|
|
|
3633
|
-
datasource_changes[_ds.dsSession][
|
|
3632
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
3634
3633
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
3635
3634
|
}
|
|
3636
3635
|
}
|