We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03c7f7 commit 191327fCopy full SHA for 191327f
1 file changed
apps/webapp/app/components/runs/v3/SharedFilters.tsx
@@ -246,7 +246,7 @@ export function timeFilterRenderValues({
246
case "range":
247
{
248
//If the day is the same, only show the time for the `to` date
249
- const isSameDay = from && to && from.getDate() === to.getDate();
+ const isSameDay = from && to && from.getDate() === to.getDate() && from.getMonth() === to.getMonth() && from.getFullYear() === to.getFullYear();
250
251
valueLabel = (
252
<span>
0 commit comments