diff --git a/web/src/components/timeline/DetailStream.tsx b/web/src/components/timeline/DetailStream.tsx index 87f65967b..727f1bbed 100644 --- a/web/src/components/timeline/DetailStream.tsx +++ b/web/src/components/timeline/DetailStream.tsx @@ -22,6 +22,7 @@ import EventMenu from "@/components/timeline/EventMenu"; import { FrigatePlusDialog } from "@/components/overlay/dialog/FrigatePlusDialog"; import { cn } from "@/lib/utils"; import { Tooltip, TooltipContent, TooltipTrigger } from "../ui/tooltip"; +import { Link } from "react-router-dom"; type DetailStreamProps = { reviewItems?: ReviewSegment[]; @@ -499,15 +500,22 @@ function EventList({ }} role="button" > - {label} - {event.data?.recognized_license_plate && ( - <> - ·{" "} - - {event.data.recognized_license_plate} - - - )} +
+ {label} + {event.data?.recognized_license_plate && ( + <> + · +
+ + {event.data.recognized_license_plate} + +
+ + )} +
@@ -615,10 +623,11 @@ function LifecycleItem({ )} />
-
+ +
-
+
{getLifecycleItemDescription(item)}
@@ -638,7 +647,9 @@ function LifecycleItem({ {areaPx !== undefined && areaPct !== undefined ? ( - {areaPx} {t("pixels", { ns: "common" })} · {areaPct}% + {areaPx} {t("pixels", { ns: "common" })}{" "} + ·{" "} + {areaPct}% ) : ( N/A @@ -648,7 +659,10 @@ function LifecycleItem({
-
{formattedEventTimestamp}
+
+ +
+
{formattedEventTimestamp}
);