Skip to content

Commit

Permalink
🐞 Login error for voters (#412) (#413)
Browse files Browse the repository at this point in the history
Parent issue: sequentech/meta#1832
  • Loading branch information
Findeton committed Sep 6, 2024
1 parent bd427ee commit 0cd130c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion avUi/common-header-directive/common-header-directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ angular
}

if (scope.$parent.getSessionStartTime) {
scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(false);
scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(true);
}

scope.showCountdown = true;
Expand Down
2 changes: 1 addition & 1 deletion dist/appCommon-v10.4.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ angular.module("avRegistration").config(function() {}), angular.module("avRegist
}
function updateTimedown() {
scope.$parent.getSessionEndTime && (scope.logoutTimeMs = scope.$parent.getSessionEndTime()),
scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!1)),
scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!0)),
scope.showCountdown = !0;
var now = Date.now();
scope.countdownSecs = Math.round((scope.logoutTimeMs - now) / 1e3), scope.countdownMins = Math.round((scope.logoutTimeMs - now) / 6e4),
Expand Down

0 comments on commit 0cd130c

Please sign in to comment.