@xuda.io/xuda-worker-bundle-min 1.3.918 → 1.3.919
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 +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2692,7 +2692,7 @@ func.datasource.execute = async function (
|
|
|
2692
2692
|
}
|
|
2693
2693
|
|
|
2694
2694
|
for await (let raw_data_row of _raw_data_rows) {
|
|
2695
|
-
_ds.currentRecordId =
|
|
2695
|
+
_ds.currentRecordId = raw_data_row.id;
|
|
2696
2696
|
if (await get_before_record_count()) {
|
|
2697
2697
|
await func.datasource.execute_view_events(
|
|
2698
2698
|
SESSION_ID,
|
|
@@ -7220,7 +7220,8 @@ func.utils.get_plugin_resource = function (
|
|
|
7220
7220
|
if (typeof IS_PROCESS_SERVER !== "undefined") {
|
|
7221
7221
|
return `${_conf.plugins_drive_path}/${_session.app_id}/node_modules/${plugin_name}/${resource}`;
|
|
7222
7222
|
} else {
|
|
7223
|
-
return `
|
|
7223
|
+
return `node_modules/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
7224
|
+
// return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
7224
7225
|
}
|
|
7225
7226
|
};
|
|
7226
7227
|
|