From c58c08f3d045f78fc8413284cdfb904b2786acbd Mon Sep 17 00:00:00 2001 From: SrashtiChauhan Date: Sat, 23 May 2026 20:16:35 +0530 Subject: [PATCH] fix(insights): improve task journey search UI and accessibility --- .../Tasks-comp/TaskHistoryTable.tsx | 25 ++++++++++++++++--- frontend/app/globals.css | 9 +++++++ 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Tasks-comp/TaskHistoryTable.tsx b/frontend/app/components/Tasks-comp/TaskHistoryTable.tsx index b792170..bc5a268 100644 --- a/frontend/app/components/Tasks-comp/TaskHistoryTable.tsx +++ b/frontend/app/components/Tasks-comp/TaskHistoryTable.tsx @@ -22,15 +22,34 @@ export default function TaskHistoryTable({ rows, query, onQueryChange }: TaskHis

Journey History

-
- search +
+ onQueryChange(event.target.value)} + onKeyDown={(event) => { + if (event.key === "Escape") { + onQueryChange(""); + } + }} /> + {query && ( + + )}