diff options
-rw-r--r-- | webui/src/components/Date.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/components/Date.tsx b/webui/src/components/Date.tsx index be0f5835..8438b801 100644 --- a/webui/src/components/Date.tsx +++ b/webui/src/components/Date.tsx @@ -10,8 +10,8 @@ const WEEK = 7 * DAY; type Props = { date: string }; const Date = ({ date }: Props) => ( - <Tooltip title={moment(date).format('MMMM D, YYYY, h:mm a')}> - <Moment date={date} fromNowDuring={WEEK} /> + <Tooltip title={moment(date).format('LLLL')}> + <span>on <Moment date={date} format='ll' fromNowDuring={WEEK} /></span> </Tooltip> ); |