summaryrefslogtreecommitdiffstats
path: root/webapp/components/msg_typing.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/msg_typing.jsx')
-rw-r--r--webapp/components/msg_typing.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/webapp/components/msg_typing.jsx b/webapp/components/msg_typing.jsx
index 503af1dc7..ee278c5f6 100644
--- a/webapp/components/msg_typing.jsx
+++ b/webapp/components/msg_typing.jsx
@@ -5,6 +5,8 @@ import UserTypingStore from 'stores/user_typing_store.jsx';
import {FormattedMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+
import React from 'react';
class MsgTyping extends React.Component {
@@ -90,8 +92,8 @@ class MsgTyping extends React.Component {
}
MsgTyping.propTypes = {
- channelId: React.PropTypes.string,
- parentId: React.PropTypes.string
+ channelId: PropTypes.string,
+ parentId: PropTypes.string
};
export default MsgTyping;