Fix JS style

This commit is contained in:
2018-04-06 17:00:25 +02:00
parent 603224e906
commit f992fb10bd
+2 -2
View File
@@ -303,11 +303,11 @@ export default Service.extend({
.then((id) => { .then((id) => {
// check if the user is a contributor or not // check if the user is a contributor or not
if( id.toNumber() === 0) { if( id.toNumber() === 0) {
return Ember.RSVP.resolve() return Ember.RSVP.resolve();
} else { } else {
return this.getContributorData(id.toNumber()); return this.getContributorData(id.toNumber());
} }
}) });
}); });
}) })
}); });