forked from treehouse/mastodon
Fix minor jslint issue (#1697)
* Undefined propType in react component `ColumnSettings`. Add proper PropTypes definition.signup-info-prompt
parent
6327f69cab
commit
ce80d0b0a9
|
@ -27,8 +27,9 @@ const ColumnSettings = React.createClass({
|
||||||
|
|
||||||
propTypes: {
|
propTypes: {
|
||||||
settings: ImmutablePropTypes.map.isRequired,
|
settings: ImmutablePropTypes.map.isRequired,
|
||||||
|
intl: ImmutablePropTypes.object.isRequired,
|
||||||
onChange: React.PropTypes.func.isRequired,
|
onChange: React.PropTypes.func.isRequired,
|
||||||
onSave: React.PropTypes.func.isRequired
|
onSave: React.PropTypes.func.isRequired,
|
||||||
},
|
},
|
||||||
|
|
||||||
mixins: [PureRenderMixin],
|
mixins: [PureRenderMixin],
|
||||||
|
|
Loading…
Reference in New Issue