We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4570018 commit a318eb6Copy full SHA for a318eb6
assets/js/datetime.js
@@ -29,7 +29,7 @@ function enterpriseEOLDate() {
29
'December',
30
];
31
var inTwoYears = date.setFullYear(date.getFullYear() + 2);
32
- earliestEOL = new Date(inTwoYears);
+ let earliestEOL = new Date(inTwoYears);
33
return `${monthNames[earliestEOL.getMonth()]} ${earliestEOL.getDate()}, ${earliestEOL.getFullYear()}`;
34
}
35
0 commit comments