From 811d434b001f1457e2470e03765e16215810a356 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:11:35 -0500 Subject: [PATCH] scrollbar on outer div --- web/src/components/input/InputWithTags.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/src/components/input/InputWithTags.tsx b/web/src/components/input/InputWithTags.tsx index c14056a79..4f488f0bd 100644 --- a/web/src/components/input/InputWithTags.tsx +++ b/web/src/components/input/InputWithTags.tsx @@ -9,6 +9,7 @@ import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; import { LuX, LuFilter, LuImage } from "react-icons/lu"; import { SearchFilter, SearchSource } from "@/types/search"; +import { DropdownMenuSeparator } from "../ui/dropdown-menu"; type FilterType = keyof SearchFilter; @@ -476,7 +477,7 @@ export default function InputWithTags({ {((showFilters && (Object.keys(filters).length > 0 || isSimilaritySearch)) || showSuggestions) && ( -
+
{showFilters && (Object.keys(filters).length > 0 || isSimilaritySearch) && (
@@ -540,7 +541,7 @@ export default function InputWithTags({ {showSuggestions && (
@@ -565,7 +566,7 @@ export default function InputWithTags({ {suggestion} ))} -
+ )}