greatCodeIdeas / md-date-range-picker

Angular Material Date Range Picker Service/Directive
MIT License
62 stars 40 forks source link

fix a bug caused by the dateStart and dateEnd were an object #74

Closed HollyFang closed 3 years ago

HollyFang commented 3 years ago

Otherwise, the dateStart will end in 23:59:59 (at line 744 ).

$scope.model.dateStart && $scope.model.dateStart.setHours(0, 0, 0, 0);
$scope.model.dateEnd && $scope.model.dateEnd.setHours(23, 59, 59, 999);