From 0557bd738534ff3e07154356eb30fc13913433ee Mon Sep 17 00:00:00 2001 From: Bhavik Patel Date: Thu, 5 Mar 2026 07:58:47 +0400 Subject: [PATCH] fix: restore @mention autocomplete visibility in task modal - Increase MentionTextarea dropdown z-index to z-[60] so it renders above z-50 modals (was z-20, clipped by overflow-y-auto on modal) - Replace plain textarea in broadcast section with MentionTextarea for consistent @mention support across all text inputs - Add hint text to broadcast placeholder about @mention usage Fixes #172 --- src/components/panels/task-board-panel.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/panels/task-board-panel.tsx b/src/components/panels/task-board-panel.tsx index e7dc395..74a6810 100644 --- a/src/components/panels/task-board-panel.tsx +++ b/src/components/panels/task-board-panel.tsx @@ -217,7 +217,7 @@ function MentionTextarea({ className={className} /> {open && filtered.length > 0 && ( -
+
{filtered.map((option, index) => (
)}
-