summaryrefslogtreecommitdiffstats
path: root/webapp/components/search_results_item.jsx
diff options
context:
space:
mode:
authorDavid Lu <david.lu@hotmail.com>2016-05-27 08:38:35 -0700
committerCorey Hulen <corey@hulen.com>2016-05-27 08:38:35 -0700
commit1736947f0e842074492d3b8a54a2090b1aeab67f (patch)
tree6e25a1a1899c3db97624c65e81ef03b0599dc605 /webapp/components/search_results_item.jsx
parent97a4310610310f5f62d377bd8d68902c0ccc92cd (diff)
downloadchat-1736947f0e842074492d3b8a54a2090b1aeab67f.tar.gz
chat-1736947f0e842074492d3b8a54a2090b1aeab67f.tar.bz2
chat-1736947f0e842074492d3b8a54a2090b1aeab67f.zip
Added BOT in RHS (#3136)
Changed BOT to constant
Diffstat (limited to 'webapp/components/search_results_item.jsx')
-rw-r--r--webapp/components/search_results_item.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/webapp/components/search_results_item.jsx b/webapp/components/search_results_item.jsx
index 64413a044..708b148d8 100644
--- a/webapp/components/search_results_item.jsx
+++ b/webapp/components/search_results_item.jsx
@@ -67,6 +67,12 @@ export default class SearchResultsItem extends React.Component {
disableProfilePopover = true;
}
+ let botIndicator;
+
+ if (post.props && post.props.from_webhook) {
+ botIndicator = <li className='col col__name bot-indicator'>{Constants.BOT_NAME}</li>;
+ }
+
return (
<div className='search-item__container'>
<div className='date-separator'>
@@ -94,13 +100,14 @@ export default class SearchResultsItem extends React.Component {
</div>
<div>
<ul className='post__header'>
- <li className='col__name'><strong>
+ <li className='col col__name'><strong>
<UserProfile
user={user}
overwriteName={overrideUsername}
disablePopover={disableProfilePopover}
/>
</strong></li>
+ {botIndicator}
<li className='col'>
<time className='search-item-time'>
<FormattedDate