We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76aea74 commit 36051bdCopy full SHA for 36051bd
quickwit/quickwit-ui/src/components/TimeRangeSelect.tsx
@@ -259,7 +259,7 @@ function DateTimeRangeLabel(props: DateTimeRangeLabelProps): JSX.Element {
259
if (props.startTimestamp !== null && props.endTimestamp !== null) {
260
return <>
261
{convertTimestampSecsIntoDateUtc(props.startTimestamp).format(DATE_TIME_WITH_SECONDS_FORMAT)} -{" "}
262
- {convertTimestampSecsIntoDateUtc(props.startTimestamp).format(DATE_TIME_WITH_SECONDS_FORMAT)}
+ {convertTimestampSecsIntoDateUtc(props.endTimestamp).format(DATE_TIME_WITH_SECONDS_FORMAT)}
263
</>
264
} else if (props.startTimestamp !== null && props.endTimestamp === null) {
265
return <>Since {convertTimestampSecsIntoDateUtc(props.startTimestamp).fromNow(true)}</>
0 commit comments