188800c018
* feat(plugin-worklfow): adjust ui * refactor(plugin-workflow): move locale into plugin * fix(plugin-workflow): fix executions history loading
24 lines
501 B
TypeScript
24 lines
501 B
TypeScript
import React from "react";
|
|
import { ResourceActionProvider, useRecord } from "@nocobase/client";
|
|
|
|
export const ExecutionResourceProvider = ({ request, filter = {}, ...others }) => {
|
|
const workflow = useRecord();
|
|
const props = {
|
|
...others,
|
|
request: {
|
|
...request,
|
|
params: {
|
|
...request?.params,
|
|
filter: {
|
|
...(request?.params?.filter),
|
|
key: workflow.key,
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ResourceActionProvider {...props} />
|
|
);
|
|
}
|