sealday
bc4c975a4d
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1156
19 lines
512 B
TypeScript
19 lines
512 B
TypeScript
import React from 'react';
|
|
import { useActionContext, useRecord } from '@tachybase/client';
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { getWorkflowExecutionsPath } from './utils';
|
|
|
|
export const ExecutionLink = () => {
|
|
const { t } = useTranslation();
|
|
const { id } = useRecord();
|
|
const { setVisible } = useActionContext();
|
|
return (
|
|
<Link to={getWorkflowExecutionsPath(id)} onClick={() => setVisible(false)}>
|
|
{t('View')}
|
|
</Link>
|
|
);
|
|
};
|