From a6d57a830f5694d1fc63c11b66dadec75826539b Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Tue, 1 Jun 2021 06:21:12 +0530 Subject: [PATCH] Minor --- www/res/calc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/res/calc.js b/www/res/calc.js index 4eba61a..58eaa6e 100644 --- a/www/res/calc.js +++ b/www/res/calc.js @@ -79,7 +79,7 @@ $(document).ready(function(){ approxOut=approxOut+(Number(i.out)*frac); if(flag==""){ $(".ioGap").each(function(){ - $(this).text(ioGap/3600000); + $(this).text(Math.round(ioGap/3600000)); }); $("#approxIn").text(Math.round(approxIn)); $("#approxOut").text(Math.round(approxOut)); -- 2.39.5