This commit is contained in:
Guilherme Gazzo 2017-11-21 15:09:22 -02:00
parent f2076ea6c8
commit a4f2f4f529
No known key found for this signature in database
GPG Key ID: 1F85C9AD922D0829
2 changed files with 5 additions and 2 deletions

View File

@ -49,7 +49,8 @@ export default class MessageBox extends React.Component {
rid: PropTypes.string.isRequired, rid: PropTypes.string.isRequired,
editRequest: PropTypes.func.isRequired, editRequest: PropTypes.func.isRequired,
message: PropTypes.object, message: PropTypes.object,
editing: PropTypes.bool editing: PropTypes.bool,
typing: PropTypes.bool
} }
componentWillReceiveProps(nextProps) { componentWillReceiveProps(nextProps) {

View File

@ -71,7 +71,9 @@ export default class RoomView extends React.Component {
server: PropTypes.string, server: PropTypes.string,
Site_Url: PropTypes.string, Site_Url: PropTypes.string,
Message_TimeFormat: PropTypes.string, Message_TimeFormat: PropTypes.string,
loading: PropTypes.bool loading: PropTypes.bool,
usersTyping: PropTypes.array,
username: PropTypes.string
}; };
constructor(props) { constructor(props) {