Add account badge #31

Merged
bumi merged 4 commits from feature/account-badge into master 2018-04-06 15:54:54 +00:00
Showing only changes of commit f992fb10bd - Show all commits
+2 -2
View File
9
@@ -303,11 +303,11 @@ export default Service.extend({
.then((id) => {
// check if the user is a contributor or not
if( id.toNumber() === 0) {
return Ember.RSVP.resolve()
return Ember.RSVP.resolve();
} else {
return this.getContributorData(id.toNumber());
}
})
});
});
})
});