Unify proptypes in util/proptypes.js (#3728)
* Unify proptypes in util/proptypes.js * Add missing use of nodeOrStringProptype
This commit is contained in:
@@ -18,6 +18,8 @@ import React, { Component, PropTypes } from 'react';
|
||||
import { LinearProgress } from 'material-ui';
|
||||
import { Step, Stepper, StepLabel } from 'material-ui/Stepper';
|
||||
|
||||
import { nodeOrStringProptype } from '~/util/proptypes';
|
||||
|
||||
import styles from '../modal.css';
|
||||
|
||||
export default class Title extends Component {
|
||||
@@ -26,9 +28,7 @@ export default class Title extends Component {
|
||||
current: PropTypes.number,
|
||||
steps: PropTypes.array,
|
||||
waiting: PropTypes.array,
|
||||
title: React.PropTypes.oneOfType([
|
||||
PropTypes.node, PropTypes.string
|
||||
])
|
||||
title: nodeOrStringProptype
|
||||
}
|
||||
|
||||
render () {
|
||||
|
||||
@@ -19,6 +19,8 @@ import { connect } from 'react-redux';
|
||||
import { bindActionCreators } from 'redux';
|
||||
import { Dialog } from 'material-ui';
|
||||
|
||||
import { nodeOrStringProptype } from '~/util/proptypes';
|
||||
|
||||
import Container from '../Container';
|
||||
import Title from './Title';
|
||||
|
||||
@@ -42,9 +44,7 @@ class Modal extends Component {
|
||||
current: PropTypes.number,
|
||||
waiting: PropTypes.array,
|
||||
steps: PropTypes.array,
|
||||
title: PropTypes.oneOfType([
|
||||
PropTypes.node, PropTypes.string
|
||||
]),
|
||||
title: nodeOrStringProptype,
|
||||
visible: PropTypes.bool.isRequired,
|
||||
settings: PropTypes.object.isRequired
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user