From e7612ccf8ab584b7042ae8e32a63358f928a3088 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 6 Jun 2024 15:01:54 +0200 Subject: [PATCH] Fix date picker (#2244) * fix(ui): date range - picking time messing up the date range * change(ui): inreased the session url ellipsis condition --- frontend/app/components/Session_/Subheader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session_/Subheader.js b/frontend/app/components/Session_/Subheader.js index 6e6f697f9..1a75280aa 100644 --- a/frontend/app/components/Session_/Subheader.js +++ b/frontend/app/components/Session_/Subheader.js @@ -38,7 +38,7 @@ function SubHeader(props) { }, [props.integrations]); const location = - currentLocation && currentLocation.length > 70 + currentLocation && currentLocation.length > 140 ? `${currentLocation.slice(0, 25)}...${currentLocation.slice(-40)}` : currentLocation;