Skip to content

Commit

Permalink
Include custom cells in search
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed May 17, 2022
1 parent 437c4f2 commit 9dce6c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/src/data-grid-search/data-grid-search.tsx
Expand Up @@ -150,6 +150,9 @@ const DataGridSearch: React.FunctionComponent<DataGridSearchProps> = p => {
// free. And ya know... it's nice and easy to do...
testString = cell.data.join("馃惓");
break;
case GridCellKind.Custom:
testString = cell.copyData;
break;
}

if (testString !== undefined && regex.test(testString)) {
Expand Down

0 comments on commit 9dce6c3

Please sign in to comment.