summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-11-12 10:12:58 -0800
committerCorey Hulen <corey@hulen.com>2015-11-12 10:12:58 -0800
commit931f4f764cbd18f1f5189e03ece83685e4dc6ffa (patch)
treec7675c761206d4913786a54b58b8ba6c35c9440f /web/react/components
parentb6049721f9a168b47b5b6b602517719277b56b07 (diff)
parent83d34dcc6c5964ed4dfc4759fe4c9683606ab7fa (diff)
downloadchat-931f4f764cbd18f1f5189e03ece83685e4dc6ffa.tar.gz
chat-931f4f764cbd18f1f5189e03ece83685e4dc6ffa.tar.bz2
chat-931f4f764cbd18f1f5189e03ece83685e4dc6ffa.zip
Merge pull request #1412 from mattermost/plt-1089
PLT-1089 Fix profile not loading in RHS on refresh
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/user_profile.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/user_profile.jsx b/web/react/components/user_profile.jsx
index 8c6b1d89c..a2523ef68 100644
--- a/web/react/components/user_profile.jsx
+++ b/web/react/components/user_profile.jsx
@@ -29,7 +29,7 @@ export default class UserProfile extends React.Component {
return {profile: {id: '0', username: '...'}};
}
- return {profile: profile};
+ return {profile};
}
componentDidMount() {
UserStore.addChangeListener(this.onChange);