fix export dialog overflowing due to i18n time lengths (#19736)

wrap the pair of custom time pickers in a flex-wrap
This commit is contained in:
Josh Hawkins 2025-08-25 18:11:42 -05:00 committed by GitHub
parent 4fcb1ea7ac
commit 0dda37ac43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -433,6 +433,7 @@ function CustomTimeSelector({
className={`mt-3 flex items-center rounded-lg bg-secondary text-secondary-foreground ${isDesktop ? "mx-8 gap-2 px-2" : "pl-2"}`}
>
<FaCalendarAlt />
<div className="flex flex-wrap items-center">
<Popover
open={startOpen}
onOpenChange={(open) => {
@ -565,6 +566,7 @@ function CustomTimeSelector({
</PopoverContent>
</Popover>
</div>
</div>
);
}