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 e83ec07 commit 1a988c4Copy full SHA for 1a988c4
1 file changed
apps/webapp/app/components/runs/v3/SharedFilters.tsx
@@ -739,12 +739,8 @@ export function dateFromString(value: string | undefined | null): Date | undefin
739
740
function QuickDateButton({ label, onClick }: { label: string; onClick: () => void }) {
741
return (
742
- <button
743
- type="button"
744
- onClick={onClick}
745
- className="rounded border border-charcoal-650 bg-charcoal-750 px-2 py-0.5 text-xs text-text-dimmed transition hover:border-charcoal-600 hover:text-text-bright"
746
- >
+ <Button type="button" variant="secondary/small" onClick={onClick} fullWidth>
747
{label}
748
- </button>
+ </Button>
749
);
750
}
0 commit comments