Set file size to show size in iB to show that is is binary
Some checks failed
Publish Docker rootless image / Push Docker image to Docker Hub (push) Failing after 1m39s
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 36s

This commit is contained in:
Aroy-Art 2024-03-27 13:46:26 +01:00
parent 5be1cd5d65
commit 37b78f6c61
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -205,7 +205,7 @@ $(document).ready(function () {
} else { } else {
var result = value.toFixed(2); var result = value.toFixed(2);
return result + ' ' + 'KMGTPEZY'[exp - 1] + 'B'; return result + ' ' + 'KMGTPEZY'[exp - 1] + 'iB';
} }
} }