Add defaultProps to MultipleNotifications (#7449)

feature/default_network_editable
Whymarrh Whitby 5 years ago committed by GitHub
parent d41522d5c0
commit 7a6f2693fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      ui/app/components/app/multiple-notifications/multiple-notifications.component.js

@ -3,6 +3,11 @@ import classnames from 'classnames'
import PropTypes from 'prop-types'
export default class MultipleNotifications extends PureComponent {
static defaultProps = {
children: [],
classNames: [],
}
static propTypes = {
children: PropTypes.array,
classNames: PropTypes.array,
@ -14,7 +19,7 @@ export default class MultipleNotifications extends PureComponent {
render () {
const { showAll } = this.state
const { children, classNames = [] } = this.props
const { children, classNames } = this.props
const childrenToRender = children.filter(child => child)
if (childrenToRender.length === 0) {

Loading…
Cancel
Save