From c106787251f21722fb3612d797859b27dd7b7b80 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:00:54 -0500 Subject: [PATCH] replace underscore in filter type --- 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 3249fa045..e4b02fa73 100644 --- a/web/src/components/input/InputWithTags.tsx +++ b/web/src/components/input/InputWithTags.tsx @@ -589,7 +589,8 @@ export default function InputWithTags({ key={`${filterType}-${index}`} className="inline-flex items-center whitespace-nowrap rounded-full bg-green-100 px-2 py-0.5 text-sm capitalize text-green-800" > - {filterType}: {value.replaceAll("_", " ")} + {filterType.replaceAll("_", " ")}:{" "} + {value.replaceAll("_", " ")}