From cb1474d90fa2d1ef28fcb34a44738b8d225aa258 Mon Sep 17 00:00:00 2001 From: alejandrobailo Date: Wed, 17 Jun 2026 21:02:43 +0200 Subject: [PATCH] feat(ui): hint Enter-to-commit in default table search placeholder The default DataTableSearch placeholder now reads "Search... (press Enter)" so the commit-on-Enter behavior is discoverable across every table that does not pass a custom placeholder. --- ui/components/shadcn/table/data-table-search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/shadcn/table/data-table-search.tsx b/ui/components/shadcn/table/data-table-search.tsx index fa85bdb2e1..9b30937986 100644 --- a/ui/components/shadcn/table/data-table-search.tsx +++ b/ui/components/shadcn/table/data-table-search.tsx @@ -44,7 +44,7 @@ export const DataTableSearch = ({ controlledValue, onSearchChange, onSearchCommit, - placeholder = "Search...", + placeholder = "Search... (press Enter)", badge, }: DataTableSearchProps) => { const searchParams = useSearchParams();