@xuda.io/runtime-bundle 1.0.708 → 1.0.709
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 +2 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +2 -2
- package/js/xuda-runtime-slim.min.es.js +2 -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 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -30057,7 +30057,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30057
30057
|
for (const [key, val] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
30058
30058
|
if (fields_changed.includes(val)) {
|
|
30059
30059
|
let ret = await func.expression.get(SESSION_ID, '@' + val, _dsSession, 'parameters');
|
|
30060
|
-
_ds.
|
|
30060
|
+
_ds.in_parameters[val].value = ret.result;
|
|
30061
30061
|
}
|
|
30062
30062
|
}
|
|
30063
30063
|
}
|
|
@@ -31870,7 +31870,7 @@ const get_params_obj_new = async function (SESSION_ID, prog_id, nodeP, dsSession
|
|
|
31870
31870
|
// in parameter
|
|
31871
31871
|
let ret = await func.expression.get(SESSION_ID, nodeP.attributes[`xu-exp:${val.data.parameter}`], dsSession, 'parameters');
|
|
31872
31872
|
params_res[val.data.parameter] = ret.result;
|
|
31873
|
-
params_raw[val.data.parameter] = val.data.parameter;
|
|
31873
|
+
params_raw[val.data.parameter] = nodeP.attributes[`xu-exp:${val.data.parameter}`];
|
|
31874
31874
|
}
|
|
31875
31875
|
}
|
|
31876
31876
|
continue;
|