fix: get the overview page to appear

This commit is contained in:
Emmanuel BENOîT 2024-12-31 01:01:14 +01:00
parent a9ac89ab22
commit f486fcf8da
Signed by: Emmanuel BENOîT
SSH key fingerprint: SHA256:l7PFUUF5TCDsvYeQC9OnTNz08dFY7Fvf4Hv3neIqYpg
6 changed files with 22 additions and 21 deletions
site/static/beta5/js

View file

@ -1,5 +1,6 @@
function formatNumber(n)
function formatNumber(number)
{
let n = number || 0;
var l = n.length, m = l % 3, c = (l - m) / 3, v = ((m > 0) ? n.substr(0, m) : ''), z;
for (z=0;z<c;z++)
{