Skip to content

Commit

Permalink
🐞 election-title_i18n is not applied everywhere (#349)
Browse files Browse the repository at this point in the history
Parent issue: sequentech/meta#268
  • Loading branch information
Findeton committed Oct 10, 2023
1 parent 1d698b5 commit 80e896f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion avUi/checker-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
});
*/
angular.module('avUi')
.service('CheckerService', function() {
.service('CheckerService', function($filter) {
function checker(d) {

/*
Expand Down
4 changes: 2 additions & 2 deletions dist/appCommon-v10.0.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ angular.module("avRegistration").config(function() {}), angular.module("avRegist
return "over-valid-votes" === (over = null == over ? question.answer_total_votes_percentage : over) || "over-total-valid-votes" === over ? base = question.totals.valid_votes : "over-total-valid-points" === over && void 0 !== question.totals.valid_points && (base = question.totals.valid_points),
print(100 * total_votes / base);
};
}), angular.module("avUi").service("CheckerService", function() {
}), angular.module("avUi").service("CheckerService", [ "$filter", function($filter) {
function checker(d) {
function evalValue(code, $value) {
return angular.isString(code) ? eval(code) : code;
Expand Down Expand Up @@ -1515,7 +1515,7 @@ angular.module("avRegistration").config(function() {}), angular.module("avRegist
return ret;
}
return checker;
}), angular.module("avUi").factory("ElectionCreation", function() {
} ]), angular.module("avUi").factory("ElectionCreation", function() {
var service = {
generateAuthapiRequest: function(el) {
el.census.config.subject && !_.contains([ "email", "email-otp" ], el.census.auth_method) && delete el.census.config.subject;
Expand Down

0 comments on commit 80e896f

Please sign in to comment.