diff --git a/web/src/routes/Events.jsx b/web/src/routes/Events.jsx index 2b79efe90..4e6e81818 100644 --- a/web/src/routes/Events.jsx +++ b/web/src/routes/Events.jsx @@ -24,6 +24,7 @@ import Button from '../components/Button'; import Dialog from '../components/Dialog'; import { fromUnixTime, intervalToDuration, formatDuration } from 'date-fns'; import MultiSelect from '../components/MultiSelect'; +import TimeAgo from '../components/TimeAgo'; const API_LIMIT = 25; @@ -515,9 +516,12 @@ export default function Events({ path, ...props }) { ({(event.top_score * 100).toFixed(0)}%)
+ {`${new Date(event.start_time * 1000).toLocaleDateString(locale, { timeZone: timezone })} `}
+ {`${new Date(event.start_time * 1000).toLocaleTimeString(locale, { timeZone: timezone })} `}
+ -