summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_focus_view.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-26 11:19:05 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-26 11:19:05 -0500
commit53d0bce1da190d45ffd8dbf4afcf7e8b2878bad5 (patch)
tree53043d11186353b54e107466e72c55178e874a22 /web/react/components/post_focus_view.jsx
parent3734145f9676946792a3efab842812e547cbdab1 (diff)
parentd563bf11527698bef02fc4b17852e260ba43f4e8 (diff)
downloadchat-53d0bce1da190d45ffd8dbf4afcf7e8b2878bad5.tar.gz
chat-53d0bce1da190d45ffd8dbf4afcf7e8b2878bad5.tar.bz2
chat-53d0bce1da190d45ffd8dbf4afcf7e8b2878bad5.zip
Merge pull request #2257 from mattermost/rhs-profile-fix
Final fixes for user store changes
Diffstat (limited to 'web/react/components/post_focus_view.jsx')
-rw-r--r--web/react/components/post_focus_view.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/react/components/post_focus_view.jsx b/web/react/components/post_focus_view.jsx
index b9b6acd5f..44a0bae09 100644
--- a/web/react/components/post_focus_view.jsx
+++ b/web/react/components/post_focus_view.jsx
@@ -105,6 +105,7 @@ export default class PostFocusView extends React.Component {
introText={this.getIntroMessage()}
messageSeparatorTime={0}
postsToHighlight={postsToHighlight}
+ profiles={this.props.profiles}
/>
</div>
);
@@ -114,4 +115,5 @@ PostFocusView.defaultProps = {
};
PostFocusView.propTypes = {
+ profiles: React.PropTypes.object
};