summaryrefslogtreecommitdiffstats
path: root/web/react/components/mention.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-10-05 16:02:09 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-10-05 16:02:09 -0400
commite2e00d9d43c14806cd5a5c424b9879636dfd89c8 (patch)
tree607e55539a4827382bfdc331400885fdd073922c /web/react/components/mention.jsx
parent193732ffbf1107fd146412ce38a053354d972e25 (diff)
parent33b957ed1a8a44d4bed0f9c674d5602bad5028ea (diff)
downloadchat-e2e00d9d43c14806cd5a5c424b9879636dfd89c8.tar.gz
chat-e2e00d9d43c14806cd5a5c424b9879636dfd89c8.tar.bz2
chat-e2e00d9d43c14806cd5a5c424b9879636dfd89c8.zip
Merge pull request #922 from mattermost/plt-360
PLT-360 Upgrade and changes to ESLint
Diffstat (limited to 'web/react/components/mention.jsx')
-rw-r--r--web/react/components/mention.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/mention.jsx b/web/react/components/mention.jsx
index 3a09e843d..ef7cec408 100644
--- a/web/react/components/mention.jsx
+++ b/web/react/components/mention.jsx
@@ -18,7 +18,9 @@ export default class Mention extends React.Component {
var timestamp = UserStore.getCurrentUser().update_at;
if (this.props.id === 'allmention' || this.props.id === 'channelmention') {
icon = <span><i className='mention-img fa fa-users fa-2x'></i></span>;
- } else if (this.props.id != null) {
+ } else if (this.props.id == null) {
+ icon = <span><i className='mention-img fa fa-users fa-2x'></i></span>;
+ } else {
icon = (
<span>
<img
@@ -27,8 +29,6 @@ export default class Mention extends React.Component {
/>
</span>
);
- } else {
- icon = <span><i className='mention-img fa fa-users fa-2x'></i></span>;
}
return (
<div