From f04a2d16fda1e54a943dc74faf417d99650863ab Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Tue, 1 Jun 2021 06:18:58 +0530 Subject: [PATCH] Minor --- www/res/calc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/res/calc.js b/www/res/calc.js index d7a155f..4eba61a 100644 --- a/www/res/calc.js +++ b/www/res/calc.js @@ -81,8 +81,8 @@ $(document).ready(function(){ $(".ioGap").each(function(){ $(this).text(ioGap/3600000); }); - $("#approxIn").text(approxIn); - $("#approxOut").text(approxOut); + $("#approxIn").text(Math.round(approxIn)); + $("#approxOut").text(Math.round(approxOut)); $("#ioData").removeClass("d-none"); } else{ -- 2.39.5