Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Findeton committed Apr 4, 2024
1 parent 73c819c commit e9672dd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions avAdmin/admin-directives/dashboard/turnout-graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,13 @@ angular.module('avAdmin')
function calculateValues() {
var minDate = scope.minDate;
var maxDate = scope.maxDate;
if (!scope.selectedDates.minDate) {
scope.selectedDates.minDate = minDate;
}
if (!scope.selectedDates.maxDate) {
scope.selectedDates.maxDate = maxDate;
}

var turnoutData = scope.turnoutData;
if (!turnoutData) {
return;
Expand Down

0 comments on commit e9672dd

Please sign in to comment.