@xuda.io/xuda-worker-bundle-min 1.3.2319 → 1.3.2320
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/index.js +7 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3191,13 +3191,13 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3191
3191
|
}
|
|
3192
3192
|
|
|
3193
3193
|
if (field_id === 'watcher') {
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3194
|
+
if (!server_datasource_changes[dataSource]) {
|
|
3195
|
+
server_datasource_changes[dataSource] = {};
|
|
3196
|
+
}
|
|
3197
|
+
if (!server_datasource_changes[dataSource][record_id]) {
|
|
3198
|
+
server_datasource_changes[dataSource][record_id] = {};
|
|
3199
|
+
}
|
|
3200
|
+
server_datasource_changes[dataSource][record_id][field_id] = value;
|
|
3201
3201
|
|
|
3202
3202
|
await func.UI.screen.refresh_screen(
|
|
3203
3203
|
SESSION_ID,
|