More
Some checks failed
CI / Check (push) Failing after 2m14s
Build and publish Docker image / build-and-push (push) Failing after 2m38s

This commit is contained in:
Andras Schmelczer 2026-05-04 17:21:26 +01:00
parent cd34ee693f
commit 05a1f316e1
58 changed files with 3113 additions and 1277 deletions

View file

@ -31,6 +31,7 @@ interface TravelTimeCardProps {
onToggleBest: () => void;
onRemove: () => void;
filterImpact?: number;
destinationDropdownPortal?: boolean;
}
export function TravelTimeCard({
@ -51,6 +52,7 @@ export function TravelTimeCard({
onToggleBest,
onRemove,
filterImpact,
destinationDropdownPortal = true,
}: TravelTimeCardProps) {
const { t } = useTranslation();
const modes = useTranslatedModes();
@ -110,6 +112,7 @@ export function TravelTimeCard({
value={label || undefined}
onClear={() => onSetDestination('', '', 0, 0)}
placeholder={t('travel.selectDestination')}
portal={destinationDropdownPortal}
/>
{/* Best-case toggle — transit only, shown when destination is set */}