From 8ab104573255f15488344c17f67e07c9028a541f Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 26 Jul 2026 19:00:17 +0100 Subject: [PATCH] Update TimeDisplay component to enhance layout flexibility - Added the 'wrap' property to the Flex container in TimeDisplay, allowing for better handling of content overflow and improving overall layout adaptability. --- src/components/Dashboard/common/TimeDisplay.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dashboard/common/TimeDisplay.jsx b/src/components/Dashboard/common/TimeDisplay.jsx index c6f0f83..fd461b5 100644 --- a/src/components/Dashboard/common/TimeDisplay.jsx +++ b/src/components/Dashboard/common/TimeDisplay.jsx @@ -107,7 +107,7 @@ const TimeDisplay = ({ const formattedDate = dayjs(dateTime).format(dateFormat) return ( - + {showDate || showTime ? {formattedDate} : null} {showSince ? {timeAgo} : null}