diff options
author | slice <ryaneft@gmail.com> | 2019-05-29 23:42:09 -0700 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-05-30 09:04:00 +0200 |
commit | e04724296b06bc08fa2ced9616dc7d0a5c89e3ca (patch) | |
tree | a1772fe6a647574fc62ef9b79a893cdf12894223 /app/javascript/flavours/glitch/features/compose/components | |
parent | 07d4ecfe5e7bff09a6fbe492f477cbe2cb4a1c25 (diff) |
Remove isRequired from Glitch ReplyIndicator status
This can be null under normal circumstances, which isRequired doesn't like.
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/components')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/reply_indicator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js index f96ea4c5e..9d5b65a40 100644 --- a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js +++ b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js @@ -26,7 +26,7 @@ export default @injectIntl class ReplyIndicator extends ImmutablePureComponent { static propTypes = { - status: ImmutablePropTypes.map.isRequired, + status: ImmutablePropTypes.map, intl: PropTypes.object.isRequired, onCancel: PropTypes.func, }; |