From 6d662151de6d1d9f4fb29d878738482d1bb278c2 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 21 Oct 2025 15:55:37 -0600 Subject: [PATCH] Clean up mobile --- .../components/card/ClassificationCard.tsx | 24 +++++++++++++++---- web/src/pages/FaceLibrary.tsx | 7 ++++-- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx index c074a42a4..7ef889176 100644 --- a/web/src/components/card/ClassificationCard.tsx +++ b/web/src/components/card/ClassificationCard.tsx @@ -272,7 +272,15 @@ export function GroupedClassificationCard({ }} > - + e.preventDefault()} + > <> {isDesktop && (
@@ -300,7 +308,12 @@ export function GroupedClassificationCard({ )}
)} - + {event?.sub_label ? event.sub_label : t("details.unknown")} {event?.sub_label && (
{`${Math.round((event.data.sub_label_score || 0) * 100)}%`}
)}
- + {time && (
{Object.entries(faceGroups).map(([key, group]) => { const event = events?.find((ev) => ev.id == key);