Fix banner date logic

Months in `new Date(y, m, d)` are 0-based, just to be awkward
pull/8192/head
Matt Westcott 2022-04-06 17:47:55 +01:00 zatwierdzone przez Matt Westcott
rodzic ad64ac3e91
commit 7f46688741
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ $(() => {
if (
!hasCookie('wagtailSpaceNLClosed', 'true') &&
new Date() < new Date(2022, 6, 18)
new Date() < new Date(2022, 5, 18) // Month is 0-based, so subtract one from the real month number!
) {
$('main').prepend($wagtailspace);
$wagtailspace.find('.wagtailspace-close').click(() => {