summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_info.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-17 22:00:33 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-17 22:00:33 -0700
commit804b696bdc7d0b68701ce80e6ff5fba7ff3677c3 (patch)
tree7ba0acb7505b32800e9d1bfab66b5fe62c42beb3 /web/react/components/post_info.jsx
parent44714dfcb18b9a393dc34be3c182b0c092eec28a (diff)
downloadchat-804b696bdc7d0b68701ce80e6ff5fba7ff3677c3.tar.gz
chat-804b696bdc7d0b68701ce80e6ff5fba7ff3677c3.tar.bz2
chat-804b696bdc7d0b68701ce80e6ff5fba7ff3677c3.zip
PLT-11 adding config for logs to UI
Diffstat (limited to 'web/react/components/post_info.jsx')
-rw-r--r--web/react/components/post_info.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx
index c80b287a3..34ac9e759 100644
--- a/web/react/components/post_info.jsx
+++ b/web/react/components/post_info.jsx
@@ -20,7 +20,7 @@ export default class PostInfo extends React.Component {
createDropdown() {
var post = this.props.post;
var isOwner = UserStore.getCurrentId() === post.user_id;
- var isAdmin = UserStore.getCurrentUser().roles.indexOf('admin') > -1;
+ var isAdmin = utils.isAdmin(UserStore.getCurrentUser().roles);
if (post.state === Constants.POST_FAILED || post.state === Constants.POST_LOADING || post.state === Constants.POST_DELETED) {
return '';