fix: preserve the year in default conference end dates

This commit is contained in:
tdurieux
2026-09-06 10:47:59 +02:00
parent 681f72f75c
commit 9f00641529
4 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -3484,7 +3484,7 @@ angular
const start = new Date();
start.setDate(1);
start.setMonth(start.getMonth() + 1);
const end = new Date();
const end = new Date(start);
end.setMonth(start.getMonth() + 7, 0);
$scope.options = {
startDate: start,
+1 -1
View File
File diff suppressed because one or more lines are too long