summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/sidebar')
-rw-r--r--client/components/sidebar/sidebar.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js
index 92712e28..1290fd13 100644
--- a/client/components/sidebar/sidebar.js
+++ b/client/components/sidebar/sidebar.js
@@ -121,9 +121,9 @@ Template.memberPopup.helpers({
},
memberType() {
const type = Users.findOne(this.userId).isBoardAdmin() ? 'admin' : 'normal';
- if(type == 'normal'){
+ if(type === 'normal'){
const currentBoard = Boards.findOne(Session.get('currentBoard'));
- const commentOnly = currentBoard.hasCommentOnly(this.userId)
+ const commentOnly = currentBoard.hasCommentOnly(this.userId);
if(commentOnly){
return TAPi18n.__('comment-only').toLowerCase();
} else {