Skip to content

Commit

Permalink
Merge pull request #20 from bleu-fi/search
Browse files Browse the repository at this point in the history
fix: replace filter for seach on datatabletoolbar
  • Loading branch information
luizakp authored Feb 13, 2024
2 parents ff2b5bd + 13accac commit 7f98f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DataTable/DataTableToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function DataTableToolbar({
<div className="flex items-center justify-between">
<div className="flex flex-1 items-center space-x-2">
<Input
placeholder="Filter..."
placeholder="Search..."
value={table.getColumn(searchKey)?.getFilterValue() ?? ""}
onChange={(event) =>
table.getColumn(searchKey)?.setFilterValue(event.target.value)
Expand Down

0 comments on commit 7f98f06

Please sign in to comment.