mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Fix table crash on filter (#587)
This commit is contained in:
parent
e748b2457e
commit
62be444f71
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue