Fix the build.

This commit is contained in:
Guo Xiang Tan
2018-03-19 18:47:17 +08:00
parent 41b0fbe001
commit 2b7fb43d84
2 changed files with 2 additions and 21 deletions

View File

@@ -15,11 +15,7 @@ export default Ember.Component.extend({
@computed("model.is_group_user")
userIsGroupUser(isGroupUser) {
if (isGroupUser !== undefined) {
return isGroupUser;
} else {
return false;
}
return !!isGroupUser;
},
_showLoginModal() {