Fix minor jslint issue (#1697)
* Undefined propType in react component `ColumnSettings`. Add proper PropTypes definition.
This commit is contained in:
parent
6327f69cab
commit
ce80d0b0a9
1 changed files with 2 additions and 1 deletions
|
@ -27,8 +27,9 @@ const ColumnSettings = React.createClass({
|
|||
|
||||
propTypes: {
|
||||
settings: ImmutablePropTypes.map.isRequired,
|
||||
intl: ImmutablePropTypes.object.isRequired,
|
||||
onChange: React.PropTypes.func.isRequired,
|
||||
onSave: React.PropTypes.func.isRequired
|
||||
onSave: React.PropTypes.func.isRequired,
|
||||
},
|
||||
|
||||
mixins: [PureRenderMixin],
|
||||
|
|
Loading…
Reference in a new issue