Gracefully handle pending changes for contributions #159

Merged
raucao merged 6 commits from feature/pending_changes into master 2019-10-18 15:31:42 +00:00
Showing only changes of commit a7dd058d21 - Show all commits
+2 -2
View File
@@ -210,8 +210,8 @@ export default Service.extend({
getContributors () {
return this.kredits.Contributor.all()
.then((contributors) => {
return contributors.map((contributor) => {
.then(contributors => {
return contributors.map(contributor => {
return Contributor.create(contributor);
});
});