Skip to content

Commit

Permalink
[bug] Fix bug 71491
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey committed Dec 4, 2024
1 parent abe1870 commit a7db22c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion branding/info/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
var licdateStart = new Date(licenseInfo.startDate);
elem = document.getElementById('lic-start');
elem.innerText = licdateStart.toLocaleDateString();
if (16 === licType || licdateStart > new Date()) {
if (16 === licType || licdateStart > new Date(serverInfo.date)) {
elem.classList.add('critical');
}
}
Expand Down

0 comments on commit a7db22c

Please sign in to comment.