From 95f2b9b71393feb362e17a3a867e0db81b7a4e25 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 16 Jun 2024 13:09:45 +0200 Subject: [PATCH] fix(ui): improve torrent status display spacing Added line breaks to the torrent status display sections for better visual separation. This enhances readability and user experience by making the status information more scannable. --- public/js/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/js/index.js b/public/js/index.js index 7a948f0..e38c6e0 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -165,6 +165,7 @@ async function downloadFile() { torrent.done ? "Completed, seeding" : "Downloading" }
Peers: ${torrent.numPeers} +

Downloaded: ${( torrent.downloaded / (1024 * 1024) @@ -176,6 +177,7 @@ async function downloadFile() { (1024 * 1024) ).toFixed(2)} MB/s
ETA: ${torrent.timeRemaining} seconds +

Uploaded: ${( torrent.uploaded / (1024 * 1024)