@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
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -5247,14 +5247,13 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
5247
5247
|
if (_ds?.progDataSource?.datasetOutputField) {
|
|
5248
5248
|
let datasource_changes = {};
|
|
5249
5249
|
|
|
5250
|
-
let _ds = _session.DS_GLB[_ds.dsSessionP];
|
|
5251
5250
|
if (!datasource_changes[_ds.dsSession]) {
|
|
5252
5251
|
datasource_changes[_ds.dsSession] = {};
|
|
5253
5252
|
}
|
|
5254
5253
|
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
5255
5254
|
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
5256
5255
|
|
|
5257
|
-
datasource_changes[_ds.dsSession][
|
|
5256
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
5258
5257
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
5259
5258
|
}
|
|
5260
5259
|
}
|
|
@@ -5248,14 +5248,13 @@ func.datasource.callback = async function (SESSION_ID, dsSessionP, na, rowIdP, j
|
|
|
5248
5248
|
if (_ds?.progDataSource?.datasetOutputField) {
|
|
5249
5249
|
let datasource_changes = {};
|
|
5250
5250
|
|
|
5251
|
-
let _ds = _session.DS_GLB[_ds.dsSessionP];
|
|
5252
5251
|
if (!datasource_changes[_ds.dsSession]) {
|
|
5253
5252
|
datasource_changes[_ds.dsSession] = {};
|
|
5254
5253
|
}
|
|
5255
5254
|
if (!datasource_changes[_ds.dsSession][_ds.currentRecordId]) {
|
|
5256
5255
|
datasource_changes[_ds.dsSession][_ds.currentRecordId] = {};
|
|
5257
5256
|
|
|
5258
|
-
datasource_changes[_ds.dsSession][
|
|
5257
|
+
datasource_changes[_ds.dsSession][_ds.currentRecordId][_ds?.progDataSource?.datasetOutputField] = _ds?.data_feed?.rows || [];
|
|
5259
5258
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
5260
5259
|
}
|
|
5261
5260
|
}
|