From 89774fc6bfe50a0d4060a69542f1d718f216cb33 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 17 Dec 2025 19:12:06 -0600 Subject: [PATCH] support attributes in search input --- web/src/components/input/InputWithTags.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/input/InputWithTags.tsx b/web/src/components/input/InputWithTags.tsx index 298537136..70f1cd0c9 100755 --- a/web/src/components/input/InputWithTags.tsx +++ b/web/src/components/input/InputWithTags.tsx @@ -399,7 +399,7 @@ export default function InputWithTags({ newFilters.sort = value as SearchSortType; break; default: - // Handle array types (cameras, labels, subLabels, zones) + // Handle array types (cameras, labels, sub_labels, attributes, zones) if (!newFilters[type]) newFilters[type] = []; if (Array.isArray(newFilters[type])) { if (!(newFilters[type] as string[]).includes(value)) {