summaryrefslogtreecommitdiffstats
path: root/webapp/components/post.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-04-04 08:13:27 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-04-04 08:13:27 -0400
commit94ab36500fff90b87f086e040c556a89176479b1 (patch)
tree8a01cd2b98aa1a20c0e2fed99d68b2f5c63cf15a /webapp/components/post.jsx
parentcaa642ab7843e10b87d61158700bb32c200e356f (diff)
parent371dbfff22c523c046df537dc63764cfd2c70bd6 (diff)
downloadchat-94ab36500fff90b87f086e040c556a89176479b1.tar.gz
chat-94ab36500fff90b87f086e040c556a89176479b1.tar.bz2
chat-94ab36500fff90b87f086e040c556a89176479b1.zip
Merge pull request #2621 from asaadmahmoodspin/ui-improvements
PLT-2027- Improvements to about dialog
Diffstat (limited to 'webapp/components/post.jsx')
-rw-r--r--webapp/components/post.jsx12
1 files changed, 10 insertions, 2 deletions
diff --git a/webapp/components/post.jsx b/webapp/components/post.jsx
index 30c47ee22..bbf8d9bf6 100644
--- a/webapp/components/post.jsx
+++ b/webapp/components/post.jsx
@@ -129,6 +129,7 @@ export default class Post extends React.Component {
const post = this.props.post;
const parentPost = this.props.parentPost;
const posts = this.props.posts;
+ const mattermostLogo = Constants.MATTERMOST_ICON_SVG;
if (!post.props) {
post.props = {};
@@ -191,8 +192,6 @@ export default class Post extends React.Component {
} else {
src = Constants.DEFAULT_WEBHOOK_LOGO;
}
- } else if (Utils.isSystemMessage(post)) {
- src = Constants.SYSTEM_MESSAGE_PROFILE_IMAGE;
}
profilePic = (
@@ -202,6 +201,15 @@ export default class Post extends React.Component {
width='36'
/>
);
+
+ if (Utils.isSystemMessage(post)) {
+ profilePic = (
+ <span
+ className='icon'
+ dangerouslySetInnerHTML={{__html: mattermostLogo}}
+ />
+ );
+ }
}
return (