Skip to content

Commit

Permalink
Merge pull request #3536 from jaytula/next
Browse files Browse the repository at this point in the history
Set key prop on CheckboxGroupInputItem
  • Loading branch information
djhi authored Aug 19, 2019
2 parents f7dbc69 + c804c2e commit a893009
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/ra-ui-materialui/src/input/CheckboxGroupInput.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { useCallback, FunctionComponent } from 'react';
import PropTypes from 'prop-types';
import get from 'lodash/get';
import FormLabel from '@material-ui/core/FormLabel';
import FormControl, { FormControlProps } from '@material-ui/core/FormControl';
import FormGroup from '@material-ui/core/FormGroup';
Expand Down Expand Up @@ -161,6 +162,7 @@ const CheckboxGroupInput: FunctionComponent<
<FormGroup row>
{choices.map(choice => (
<CheckboxGroupInputItem
key={get(choice, optionValue)}
choice={choice}
id={id}
onChange={handleCheck}
Expand Down

0 comments on commit a893009

Please sign in to comment.