diff --git a/web/src/components/input/InputWithTags.tsx b/web/src/components/input/InputWithTags.tsx old mode 100644 new mode 100755 index 0e29c3015..21a7d2851 --- a/web/src/components/input/InputWithTags.tsx +++ b/web/src/components/input/InputWithTags.tsx @@ -424,7 +424,7 @@ export default function InputWithTags({ } else if (filterType === "search_type") { return t("filter.searchType." + (filterValues as string)); } else { - return (filterValues as string).replaceAll("_", " "); + return String(filterValues).replaceAll("_", " ") as string; } }