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 2cf6a98 commit 68cd270Copy full SHA for 68cd270
apps/webapp/app/components/runs/v3/SharedFilters.tsx
@@ -390,6 +390,11 @@ export function TimeDropdown({
390
return;
391
}
392
393
+ if (fromValue && toValue && fromValue > toValue) {
394
+ setValidationError("From date must be before To date");
395
+ return;
396
+ }
397
+
398
replace({
399
period: undefined,
400
cursor: undefined,
0 commit comments