diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx index 09437f8dcd..ab5d70f12b 100644 --- a/web/react/components/post.jsx +++ b/web/react/components/post.jsx @@ -6,6 +6,7 @@ var PostBody = require('./post_body.jsx'); var PostInfo = require('./post_info.jsx'); var AppDispatcher = require('../dispatcher/app_dispatcher.jsx'); var Constants = require('../utils/constants.jsx'); +var UserStore = require('../stores/user_store.jsx'); var ActionTypes = Constants.ActionTypes; module.exports = React.createClass({ @@ -56,7 +57,7 @@ module.exports = React.createClass({ var error = this.state.error ?
: null; - if(this.props.sameRoot){ + if (this.props.sameRoot){ rootUser = "same--root"; } else { @@ -64,13 +65,18 @@ module.exports = React.createClass({ } var postType = ""; - if(type != "Post"){ + if (type != "Post"){ postType = "post--comment"; } + var currentUser = ""; + if (UserStore.getCurrentId() === post.user_id) { + currentUser = "current--user"; + } + return (