Fix table crash on filter (#587)

This commit is contained in:
Navaneeth Pk 2021-08-23 18:54:28 +05:30 committed by GitHub
parent e748b2457e
commit 62be444f71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -701,7 +701,7 @@ export function Table({
<div className="col">
<SelectSearch
options={columnData.map((column) => {
return { name: column.Header, value: column.accessor };
return { name: column.Header, value: column.id };
})}
value={filter.id}
search={true}