From 22358f618d1ab5d2be36b89fb52a6fb19cb80363 Mon Sep 17 00:00:00 2001 From: Miguel Molina Date: Wed, 25 Sep 2024 19:49:21 -0400 Subject: [PATCH] frontend: allow last event to be placed horizontally with other components in a card --- frontend/workflows/projectCatalog/src/details/helpers.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/workflows/projectCatalog/src/details/helpers.tsx b/frontend/workflows/projectCatalog/src/details/helpers.tsx index 4ec9add3aa..21fef94368 100644 --- a/frontend/workflows/projectCatalog/src/details/helpers.tsx +++ b/frontend/workflows/projectCatalog/src/details/helpers.tsx @@ -57,16 +57,16 @@ const LinkText = ({ text, link }: { text: string; link?: string }) => { const LastEvent = ({ time, ...props }: { time: number }) => { return time ? ( - <> + - + ago - + ) : null; };