summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/post_view/components/post_header.jsx2
-rw-r--r--webapp/components/rhs_comment.jsx2
-rw-r--r--webapp/components/search_results_item.jsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/webapp/components/post_view/components/post_header.jsx b/webapp/components/post_view/components/post_header.jsx
index b79b732bc..6e54e57e7 100644
--- a/webapp/components/post_view/components/post_header.jsx
+++ b/webapp/components/post_view/components/post_header.jsx
@@ -38,7 +38,7 @@ export default class PostHeader extends React.Component {
);
}
- botIndicator = <li className='col col__name bot-indicator'>{Constants.BOT_NAME}</li>;
+ botIndicator = <li className='bot-indicator'>{Constants.BOT_NAME}</li>;
} else if (PostUtils.isSystemMessage(post)) {
userProfile = (
<UserProfile
diff --git a/webapp/components/rhs_comment.jsx b/webapp/components/rhs_comment.jsx
index a980a8227..a49a84b88 100644
--- a/webapp/components/rhs_comment.jsx
+++ b/webapp/components/rhs_comment.jsx
@@ -154,7 +154,7 @@ export default class RhsComment extends React.Component {
let botIndicator;
if (post.props && post.props.from_webhook) {
- botIndicator = <li className='col col__name bot-indicator'>{Constants.BOT_NAME}</li>;
+ botIndicator = <li className='bot-indicator'>{Constants.BOT_NAME}</li>;
}
let loading;
let postClass = '';
diff --git a/webapp/components/search_results_item.jsx b/webapp/components/search_results_item.jsx
index 3fe13878e..d8e471110 100644
--- a/webapp/components/search_results_item.jsx
+++ b/webapp/components/search_results_item.jsx
@@ -71,7 +71,7 @@ export default class SearchResultsItem extends React.Component {
let botIndicator;
if (post.props && post.props.from_webhook) {
- botIndicator = <li className='col col__name bot-indicator'>{Constants.BOT_NAME}</li>;
+ botIndicator = <li className='bot-indicator'>{Constants.BOT_NAME}</li>;
}
return (