diff --git a/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx b/spiffworkflow-frontend/src/components/TableCellWithTimeAgoInWords.tsx
index 754c37fb..9952c056 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 05121c86..6e6e84d5 100644
--- a/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx
+++ b/spiffworkflow-frontend/src/components/TasksForMyOpenProcesses.tsx
@@ -75,7 +75,7 @@ export default function MyOpenProcesses() {
) || '-'}
|