import { useTranslation } from "react-i18next"; import { Alert, Typography } from "antd"; import dayjs from "dayjs"; import Show from "@/components/Show"; import { WORKFLOW_RUN_STATUSES, type WorkflowRunModel } from "@/domain/workflowRun"; export type WorkflowRunDetailProps = { className?: string; style?: React.CSSProperties; data: WorkflowRunModel; }; const WorkflowRunDetail = ({ data, ...props }: WorkflowRunDetailProps) => { const { t } = useTranslation(); return (