From e19549a3a44100f51eaa0add154e03a1a68b95a1 Mon Sep 17 00:00:00 2001 From: Baldnerd Date: Sun, 9 Nov 2025 08:32:02 -0500 Subject: [PATCH] Round status on dashboard to match title --- installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer b/installer index 9dcd4d3..8390549 100755 --- a/installer +++ b/installer @@ -490,7 +490,7 @@ async function loadStatus() { html += '

Blocks: ' + blocks + ' ' + pruned + '

'; html += '
'; - html += '

Sync progress: ' + progress.toFixed(2) + '%'; + html += '

Sync progress: ' + progress.toFixed(1) + '%'; if (ibd) { if (etaSeconds && isFinite(etaSeconds) && etaSeconds > 0) { const etaDate = new Date(Date.now() + etaSeconds * 1000);