From 6274ffe4f9713d13ee5cc94e8a91fb7684eaedce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yanis=20Zafir=C3=B3pulos?= <1265028+drkameleon@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:08:57 +0200 Subject: [PATCH] cleanup --- website/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/script.js b/website/script.js index 16abe62a..31f73d02 100644 --- a/website/script.js +++ b/website/script.js @@ -370,7 +370,7 @@ $(document).ready(function(){ $(".repo-size-field").each(function(idx) { console.log(); - $(this).text("("+humanFileSize(parseInt($(this).text().replace("(","").replace(")","")))+")"); + $(this).text(humanFileSize(parseInt($(this).text()))); }); });