Skip to content

Commit

Permalink
Fix missing key prop in Filters component (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
notsidney authored Nov 9, 2020
1 parent 7e4bfc5 commit aa220e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/src/components/Table/Filters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ const Filters = () => {
Select Condition
</MenuItem>
{operators.map((operator) => (
<MenuItem value={operator.value}>{operator.label}</MenuItem>
<MenuItem key={operator.value} value={operator.value}>{operator.label}</MenuItem>
))}
</TextField>
</Grid>
Expand Down

0 comments on commit aa220e2

Please sign in to comment.