From a2f57c81cb7caaa152999652b48ae844dc983d15 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 24 Dec 2025 08:10:26 -0600 Subject: [PATCH] add no tracked objects and icon to explore summary view --- web/src/views/explore/ExploreView.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web/src/views/explore/ExploreView.tsx b/web/src/views/explore/ExploreView.tsx index a05dae5e2..88f6c8b88 100644 --- a/web/src/views/explore/ExploreView.tsx +++ b/web/src/views/explore/ExploreView.tsx @@ -22,6 +22,7 @@ import { SearchTab } from "@/components/overlay/detail/SearchDetailDialog"; import { FrigateConfig } from "@/types/frigateConfig"; import { useTranslation } from "react-i18next"; import { getTranslatedLabel } from "@/utils/i18n"; +import { LuSearchX } from "react-icons/lu"; type ExploreViewProps = { setSearchDetail: (search: SearchResult | undefined) => void; @@ -86,6 +87,15 @@ export default function ExploreView({ ); } + if (eventsByLabel && Object.keys(eventsByLabel).length == 0 && !isLoading) { + return ( +