Fix date picker (#2244)

* fix(ui): date range - picking time messing up the date range

* change(ui): inreased the session url ellipsis condition
This commit is contained in:
Shekar Siri 2024-06-06 15:01:54 +02:00 committed by GitHub
parent 102a7cd2cd
commit e7612ccf8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;