mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
* refactor(plugin-workflow): adjust ui and client api * fix(plugin-workflow): fix test cases * fix(plugin-workflow): fix test case
17 lines
474 B
TypeScript
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>
|
|
);
|
|
};
|