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.
This commit is contained in:
alejandrobailo
2026-06-17 21:02:43 +02:00
parent 3cc8f41227
commit cb1474d90f
@@ -44,7 +44,7 @@ export const DataTableSearch = ({
controlledValue,
onSearchChange,
onSearchCommit,
placeholder = "Search...",
placeholder = "Search... (press Enter)",
badge,
}: DataTableSearchProps) => {
const searchParams = useSearchParams();