From 3c3444180f13de6f028834c0f5382bf82824870e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:33:26 -0500 Subject: [PATCH] add descriptions --- .../components/settings/SearchSettings.tsx | 46 ++++++++++++------- 1 file changed, 29 insertions(+), 17 deletions(-) diff --git a/web/src/components/settings/SearchSettings.tsx b/web/src/components/settings/SearchSettings.tsx index d66c4769e..c9548ceb8 100644 --- a/web/src/components/settings/SearchSettings.tsx +++ b/web/src/components/settings/SearchSettings.tsx @@ -12,6 +12,7 @@ import { SelectItem, SelectTrigger, } from "@/components/ui/select"; +import { DropdownMenuSeparator } from "../ui/dropdown-menu"; type SearchSettingsProps = { className?: string; @@ -36,24 +37,15 @@ export default function SearchSettings({ ); const content = ( -
-
-
Grid Columns
-
- setColumns(value)} - max={6} - min={2} - step={1} - className="flex-grow" - /> - {columns} -
-
- +
-
Default View
+
+
Default Search View
+
+ When no filters are selected, display a summary of the 10 most + recent tracked objects per label, or display an unfiltered grid. +
+
+ +
+
+
Grid Columns
+
+ Select the number of columns in the results grid. +
+
+
+ setColumns(value)} + max={6} + min={2} + step={1} + className="flex-grow" + /> + {columns} +
+
);