FIX: fa- check was incorrect on user card
This commit is contained in:
parent
a0e92ef57a
commit
b328d47628
|
@ -30,7 +30,7 @@ export default ObjectController.extend({
|
|||
|
||||
hasCardBadgeImage: function() {
|
||||
var img = this.get('user.card_badge.image');
|
||||
return img && img.indexOf('fa-') === 0;
|
||||
return img && img.indexOf('fa-') !== 0;
|
||||
}.property('user.card_badge.image'),
|
||||
|
||||
show: function(username, uploadedAvatarId) {
|
||||
|
|
Loading…
Reference in New Issue