Fix calendrier

This commit is contained in:
2021-06-09 07:29:36 +02:00
parent 395092558f
commit 144abe1ddf
2 changed files with 5 additions and 2 deletions

View File

@ -48,7 +48,7 @@ export class RdDCalendrier extends Application {
indexJour: index,
annee: Math.floor(index / (28 * 12)),
moisRdD: Math.floor(index / 28) % 12,
jour: (index % 28),
jour: (index % 28) // Le calendrier stocke le jour en 0-27, mais en 1-28 à l'affichage
}
return calendrier;
}