From 042053e472148ac7789843d9e720cedcbc717655 Mon Sep 17 00:00:00 2001 From: moisseev Date: Thu, 13 Aug 2020 20:35:39 +0300 Subject: [PATCH] [Minor] Convert only finite numbers --- interface/js/app/stats.js | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index ea1919af5..dd89879a6 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -29,6 +29,7 @@ define(["jquery", "d3pie"], "use strict"; // @ ms to date function msToTime(seconds) { + if (!Number.isFinite(seconds)) return "???"; /* eslint-disable no-bitwise */ var years = seconds / 31536000 >> 0; // 3600*24*365 var months = seconds % 31536000 / 2628000 >> 0; // 3600*24*365/12 -- 2.39.5