From 303d5e635490d2d55e675b57e438dc2e7698325f Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:10:18 -0500 Subject: [PATCH] only show filters pane when there are actual filters --- web/src/components/input/InputWithTags.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/input/InputWithTags.tsx b/web/src/components/input/InputWithTags.tsx index b69e31d9f..a9ec82237 100644 --- a/web/src/components/input/InputWithTags.tsx +++ b/web/src/components/input/InputWithTags.tsx @@ -456,7 +456,8 @@ export default function InputWithTags({ )} - {(showFilters || showSuggestions) && ( + {((showFilters && Object.keys(filters).length > 0) || + showSuggestions) && (