@xuda.io/runtime-bundle 1.0.519 → 1.0.521
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 +27 -19
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +27 -19
- package/js/xuda-runtime-slim.min.es.js +27 -19
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +2 -3
- package/js/xuda-worker-bundle.js +2 -3
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -3702,13 +3702,12 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3702
3702
|
let client_datasource_changes = {};
|
|
3703
3703
|
let server_datasource_changes = {};
|
|
3704
3704
|
|
|
3705
|
-
const update_xu_ref =
|
|
3705
|
+
const update_xu_ref = function (dataSource, field_id) {
|
|
3706
3706
|
let ret;
|
|
3707
3707
|
let _ds_0 = _session.DS_GLB[0];
|
|
3708
3708
|
for ([ref_name, val] of Object.entries(_ds_0.data_system['SYS_GLOBAL_OBJ_REFS'])) {
|
|
3709
3709
|
if (val.ds.dsSession == dataSource) {
|
|
3710
|
-
func.UI.update_xu_ref(SESSION_ID, dataSource, ref_name);
|
|
3711
|
-
ret = true;
|
|
3710
|
+
ret = func.UI.update_xu_ref(SESSION_ID, dataSource, ref_name);
|
|
3712
3711
|
}
|
|
3713
3712
|
}
|
|
3714
3713
|
return ret;
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -3702,13 +3702,12 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3702
3702
|
let client_datasource_changes = {};
|
|
3703
3703
|
let server_datasource_changes = {};
|
|
3704
3704
|
|
|
3705
|
-
const update_xu_ref =
|
|
3705
|
+
const update_xu_ref = function (dataSource, field_id) {
|
|
3706
3706
|
let ret;
|
|
3707
3707
|
let _ds_0 = _session.DS_GLB[0];
|
|
3708
3708
|
for ([ref_name, val] of Object.entries(_ds_0.data_system['SYS_GLOBAL_OBJ_REFS'])) {
|
|
3709
3709
|
if (val.ds.dsSession == dataSource) {
|
|
3710
|
-
func.UI.update_xu_ref(SESSION_ID, dataSource, ref_name);
|
|
3711
|
-
ret = true;
|
|
3710
|
+
ret = func.UI.update_xu_ref(SESSION_ID, dataSource, ref_name);
|
|
3712
3711
|
}
|
|
3713
3712
|
}
|
|
3714
3713
|
return ret;
|