Junyi 9044434930
refactor(plugin-workflow): adjust ui and client api (#2817)
* refactor(plugin-workflow): adjust ui and client api

* fix(plugin-workflow): fix test cases

* fix(plugin-workflow): fix test case
2023-10-13 01:18:19 -07:00

17 lines
474 B
TypeScript

import React from 'react';
import { useTranslation } from 'react-i18next';
import { Link } from 'react-router-dom';
import { useActionContext, useRecord } from '@nocobase/client';
export const WorkflowLink = () => {
const { t } = useTranslation();
const { id } = useRecord();
const { setVisible } = useActionContext();
return (
<Link to={`/admin/settings/workflow/workflows/${id}`} onClick={() => setVisible(false)}>
{t('Configure')}
</Link>
);
};