We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 079e356 commit 81d06deCopy full SHA for 81d06de
1 file changed
dashboard/assets/scripts/dashboard.js
@@ -563,7 +563,7 @@ class JobsRenderer {
563
564
// Update stats
565
info.statsElements.mb.textContent = numberWithCommas(
566
- toStringTenths((parseInt(jobData.bytes_downloaded) / (1024 * 1024)).toString()),
+ toStringTenths((parseInt(jobData.bytes_downloaded) / (1000 * 1000)).toString()),
567
);
568
info.statsElements.responses.textContent = `${numberWithCommas(totalResponses)} resp.`;
569
info.statsElements.responses.title = getSummaryResponses(jobData);
0 commit comments