Fix banner date logic

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

Wyświetl plik

@ -25,7 +25,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(() => {