@xuda.io/runtime-bundle 1.0.1293 → 1.0.1295
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 +8 -8
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +8 -8
- package/js/xuda-runtime-slim.min.es.js +8 -8
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +8 -8
- package/js/xuda-worker-bundle.js +8 -8
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -28678,9 +28678,9 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
28678
28678
|
console.log('DATASOURCE_REFRESH', dataSourceNoP);
|
|
28679
28679
|
IS_DATASOURCE_REFRESH = true;
|
|
28680
28680
|
_ds.refreshed = true;
|
|
28681
|
+
debugger;
|
|
28681
28682
|
if (_ds.watcher) {
|
|
28682
28683
|
_.set(_ds, watcher.path, watcher.newValue);
|
|
28683
|
-
debugger;
|
|
28684
28684
|
}
|
|
28685
28685
|
try {
|
|
28686
28686
|
if (!_ds.v) _ds.v = {};
|
|
@@ -30217,13 +30217,13 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30217
30217
|
}
|
|
30218
30218
|
|
|
30219
30219
|
if (field_id === 'watcher') {
|
|
30220
|
-
|
|
30221
|
-
|
|
30222
|
-
|
|
30223
|
-
|
|
30224
|
-
|
|
30225
|
-
|
|
30226
|
-
|
|
30220
|
+
if (!server_datasource_changes[dataSource]) {
|
|
30221
|
+
server_datasource_changes[dataSource] = {};
|
|
30222
|
+
}
|
|
30223
|
+
if (!server_datasource_changes[dataSource][record_id]) {
|
|
30224
|
+
server_datasource_changes[dataSource][record_id] = {};
|
|
30225
|
+
}
|
|
30226
|
+
server_datasource_changes[dataSource][record_id][field_id] = value;
|
|
30227
30227
|
|
|
30228
30228
|
await func.UI.screen.refresh_screen(
|
|
30229
30229
|
SESSION_ID,
|