Browse Source

Fix PropTypes.oneOfType() warning (#5041)

pull/4/head
Nolan Lawson 6 years ago
committed by Eugen Rochko
parent
commit
b01ab55ed8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/ui/components/column_loading.js

+ 1
- 1
app/javascript/mastodon/features/ui/components/column_loading.js View File

@ -8,7 +8,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
export default class ColumnLoading extends ImmutablePureComponent {
static propTypes = {
title: PropTypes.oneOfType(PropTypes.node, PropTypes.string),
title: PropTypes.oneOfType([PropTypes.node, PropTypes.string]),
icon: PropTypes.string,
};

Loading…
Cancel
Save