diff --git a/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx b/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx index 754c37fb5..9952c0561 100644 --- a/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx +++ b/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx @@ -3,15 +3,15 @@ import { TimeAgo } from '../helpers/timeago'; import { convertSecondsToFormattedDateTime } from '../helpers'; type OwnProps = { - time_in_seconds: number; + timeInSeconds: number; }; export default function TableCellWithTimeAgoInWords({ - time_in_seconds, + timeInSeconds, }: OwnProps) { return ( - - {time_in_seconds ? TimeAgo.inWords(time_in_seconds) : '-'} + + {timeInSeconds ? TimeAgo.inWords(timeInSeconds) : '-'} ); } diff --git a/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx b/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx index 05121c861..6e6e84d55 100644 --- a/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx +++ b/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx @@ -75,7 +75,7 @@ export default function MyOpenProcesses() { ) || '-'}