mirror of
https://github.com/filecoffee/filehost.git
synced 2024-11-13 19:49:56 +01:00
toFixed(2)
This commit is contained in:
parent
5366d764a8
commit
b146b94582
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -49,7 +49,7 @@ app.get("/", async (req, res) => {
|
||||||
|
|
||||||
res.render("index", {
|
res.render("index", {
|
||||||
totalUploads: totalUploads,
|
totalUploads: totalUploads,
|
||||||
totalSize: kbToMB,
|
totalSize: kbToMB.toFixed(2),
|
||||||
hosterEmail: hosterEmail,
|
hosterEmail: hosterEmail,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue