mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-05 17:31:51 +00:00
Fix minor jslint issue (#1697)
* Undefined propType in react component `ColumnSettings`. Add proper PropTypes definition.
This commit is contained in:
parent
6327f69cab
commit
ce80d0b0a9
|
@ -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