diff options
author | Sorin Davidoi <sorin.davidoi@gmail.com> | 2017-07-27 23:01:50 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-27 23:01:50 +0200 |
commit | f9075577e4929ec796339331408d857015411ebd (patch) | |
tree | 9590ca26ffbbcd1ae71713726ee4102bc45b3d4c /app | |
parent | 50d38d7605b8998463b1428b8da886f33e0714da (diff) |
fix(actions_modal): Warning about missing prop (#4406)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/ui/components/actions_modal.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/ui/components/actions_modal.js b/app/javascript/mastodon/features/ui/components/actions_modal.js index 0fc2560ff..a7b7357b6 100644 --- a/app/javascript/mastodon/features/ui/components/actions_modal.js +++ b/app/javascript/mastodon/features/ui/components/actions_modal.js @@ -7,12 +7,11 @@ import RelativeTimestamp from '../../../components/relative_timestamp'; import DisplayName from '../../../components/display_name'; import IconButton from '../../../components/icon_button'; -export default class ReportModal extends ImmutablePureComponent { +export default class ActionsModal extends ImmutablePureComponent { static propTypes = { actions: PropTypes.array, onClick: PropTypes.func, - intl: PropTypes.object.isRequired, }; renderAction = (action, i) => { |