summaryrefslogtreecommitdiffstats
path: root/webapp/components/status_dropdown/index.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-06-15 10:34:20 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2017-06-15 10:34:20 -0400
commitc0a0065472c199166d32b052dd328b0212f5b693 (patch)
tree1d2ba19bfb9a104a4384a42c1e7a892de60c3fa8 /webapp/components/status_dropdown/index.jsx
parent0c04c5334fc89cf62a4bd3c1ce20469523a24026 (diff)
downloadchat-c0a0065472c199166d32b052dd328b0212f5b693.tar.gz
chat-c0a0065472c199166d32b052dd328b0212f5b693.tar.bz2
chat-c0a0065472c199166d32b052dd328b0212f5b693.zip
Move user actions over to use redux and v4 (#6649)
Diffstat (limited to 'webapp/components/status_dropdown/index.jsx')
-rw-r--r--webapp/components/status_dropdown/index.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/status_dropdown/index.jsx b/webapp/components/status_dropdown/index.jsx
index bd2f7d7d0..e200b2e34 100644
--- a/webapp/components/status_dropdown/index.jsx
+++ b/webapp/components/status_dropdown/index.jsx
@@ -5,7 +5,7 @@ import {
getCurrentUser,
getStatusForUserId
} from 'mattermost-redux/selectors/entities/users';
-import {Client} from 'mattermost-redux/client';
+import {Client4} from 'mattermost-redux/client';
import StatusDropdown from 'components/status_dropdown/status_dropdown.jsx';
@@ -13,7 +13,7 @@ function mapStateToProps(state) {
const currentUser = getCurrentUser(state);
const userId = currentUser.id;
const lastPicUpdate = currentUser.last_picture_update;
- const profilePicture = Client.getProfilePictureUrl(userId, lastPicUpdate);
+ const profilePicture = Client4.getProfilePictureUrl(userId, lastPicUpdate);
const status = getStatusForUserId(state, currentUser.id);
return {
userId,