mirror of
https://github.com/nocobase/nocobase
synced 2024-11-17 18:29:46 +00:00
16 lines
459 B
TypeScript
16 lines
459 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 ExecutionLink = () => {
|
||
|
const { t } = useTranslation();
|
||
|
const { id } = useRecord();
|
||
|
const { setVisible } = useActionContext();
|
||
|
return (
|
||
|
<Link to={`/admin/settings/workflow/executions/${id}`} onClick={() => setVisible(false)}>{t('View')}</Link>
|
||
|
);
|
||
|
}
|