From c67ddeb0a1dc063f1f1655344ccc9b9f956c90f3 Mon Sep 17 00:00:00 2001 From: Zane Staggs Date: Tue, 29 Jul 2025 16:39:47 -0700 Subject: [PATCH] fix not being able to click on searchbar buttons in chat --- .../src/components/conversation/SearchBar.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ui/desktop/src/components/conversation/SearchBar.tsx b/ui/desktop/src/components/conversation/SearchBar.tsx index 3770d3814d92..06c0709f99c0 100644 --- a/ui/desktop/src/components/conversation/SearchBar.tsx +++ b/ui/desktop/src/components/conversation/SearchBar.tsx @@ -143,13 +143,13 @@ export const SearchBar: React.FC = ({ return (
- +
= ({ onChange={handleSearch} onKeyDown={handleKeyDown} placeholder="Search conversation..." - className="w-full text-sm pl-9 pr-24 py-3 bg-background-inverse text-text-inverse + className="no-drag w-full text-sm pl-9 pr-24 py-3 bg-background-inverse text-text-inverse placeholder:text-text-inverse/50 focus:outline-none active:border-border-strong" /> @@ -182,7 +182,7 @@ export const SearchBar: React.FC = ({