@xuda.io/xuda-worker-bundle-min 1.3.845 → 1.3.846
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 +4 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2184,11 +2184,10 @@ func.datasource.execute = async function (
|
|
|
2184
2184
|
if (_ds.prog_id === "system") {
|
|
2185
2185
|
//TBD tree_obj.menuType === "globals"
|
|
2186
2186
|
_ds.currentRecordId = "dataset";
|
|
2187
|
-
await func.datasource.render_fields_dataset(
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
);
|
|
2187
|
+
await func.datasource.render_fields_dataset(SESSION_ID, dataSourceSession, {
|
|
2188
|
+
id: "dataset",
|
|
2189
|
+
value: _session.url_params,
|
|
2190
|
+
});
|
|
2192
2191
|
|
|
2193
2192
|
return await callback_datasource();
|
|
2194
2193
|
}
|