Fixed JS warnings when clicking on status to get detailed status
This commit is contained in:
parent
93e326a6f9
commit
e772abc402
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
|||
onToggleHidden: PropTypes.func.isRequired,
|
||||
measureHeight: PropTypes.bool,
|
||||
onHeightChange: PropTypes.func,
|
||||
domain: PropTypes.string.isRequired,
|
||||
domain: PropTypes.string,
|
||||
compact: PropTypes.bool,
|
||||
showMedia: PropTypes.bool,
|
||||
onToggleMediaVisibility: PropTypes.func,
|
||||
|
|
|
@ -129,7 +129,7 @@ class Status extends ImmutablePureComponent {
|
|||
descendantsIds: ImmutablePropTypes.list,
|
||||
intl: PropTypes.object.isRequired,
|
||||
askReplyConfirmation: PropTypes.bool,
|
||||
domain: PropTypes.string.isRequired,
|
||||
domain: PropTypes.string,
|
||||
};
|
||||
|
||||
state = {
|
||||
|
|
Loading…
Reference in a new issue