Fixing missing ballot resolver

This commit is contained in:
FinnStutzenstein 2017-01-24 12:40:44 +01:00
parent fb047fc5b9
commit 40c2cdbe50

View File

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