Fixed lint errors.

This commit is contained in:
orangemug
2017-11-29 15:03:37 +00:00
parent 1941fdf8a0
commit 61808d5939
3 changed files with 21 additions and 2 deletions

View File

@@ -15,6 +15,18 @@ import sortNumerically from '../../libs/sort-numerically'
export default class ZoomProperty extends React.Component {
static propTypes = {
onChange: PropTypes.func,
onDeleteStop: PropTypes.func,
onAddStop: PropTypes.func,
fieldName: PropTypes.string,
fieldSpec: PropTypes.object,
value: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
PropTypes.number,
PropTypes.bool,
PropTypes.array
]),
}