Merge pull request #2905 from FinnStutzenstein/ResolveFix

Fixing missing ballot resolver
This commit is contained in:
Norman Jäckel 2017-01-24 16:00:11 +01:00 committed by GitHub
commit 4e47fa7634

View File

@ -537,7 +537,8 @@ angular.module('OpenSlidesApp.assignments.site', [
closeByEscape: false, closeByEscape: false,
closeByDocument: false, closeByDocument: false,
resolve: { resolve: {
assignmentpollId: function () {return poll.id;} assignmentpollId: function () {return poll.id;},
ballot: function () {return ballot;},
} }
}); });
}; };