From 06e1189df84328f19506fdfacb34bfa3001d2ba7 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 6 Sep 2025 17:32:36 +0000 Subject: [PATCH 1/2] fix: prevent overlap of hint text with send button in search input - Changed hint text positioning from right-2 to right-12 - Provides adequate clearance for send button (40px + gap) - Ensures hint text remains visible with long prompts Co-Authored-By: penrique@agentuity.com --- components/CustomSearchDialog/SearchInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/CustomSearchDialog/SearchInput.tsx b/components/CustomSearchDialog/SearchInput.tsx index aa6f97e7..7b49e7fa 100644 --- a/components/CustomSearchDialog/SearchInput.tsx +++ b/components/CustomSearchDialog/SearchInput.tsx @@ -64,7 +64,7 @@ export function SearchInput({ rows={1} /> {currentInput.trim() && !loading && ( -
+
Press Enter to send
)} From dbbb27c8ebf94e7fca58169b145a0970204fd529 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 6 Sep 2025 17:45:15 +0000 Subject: [PATCH 2/2] fix: implement dynamic positioning for hint text in search input - Changed from absolute positioning to flex layout approach - Hint text now positioned as separate element below textarea - Text moves down with textarea expansion and stays at bottom - Resolves overlap issue when typing long prompts Co-Authored-By: penrique@agentuity.com --- components/CustomSearchDialog/SearchInput.tsx | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/components/CustomSearchDialog/SearchInput.tsx b/components/CustomSearchDialog/SearchInput.tsx index 7b49e7fa..b740071b 100644 --- a/components/CustomSearchDialog/SearchInput.tsx +++ b/components/CustomSearchDialog/SearchInput.tsx @@ -50,21 +50,23 @@ export function SearchInput({ }; return ( -
+
{/* Textarea Container */} -
-