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.
This commit is contained in:
parent
85ccdca97f
commit
95f2b9b713
1 changed files with 2 additions and 0 deletions
|
@ -165,6 +165,7 @@ async function downloadFile() {
|
|||
torrent.done ? "Completed, seeding" : "Downloading"
|
||||
}
|
||||
<br><strong>Peers:</strong> ${torrent.numPeers}
|
||||
<br>
|
||||
<br><strong>Downloaded:</strong> ${(
|
||||
torrent.downloaded /
|
||||
(1024 * 1024)
|
||||
|
@ -176,6 +177,7 @@ async function downloadFile() {
|
|||
(1024 * 1024)
|
||||
).toFixed(2)} MB/s
|
||||
<br><strong>ETA:</strong> ${torrent.timeRemaining} seconds
|
||||
<br>
|
||||
<br><strong>Uploaded:</strong> ${(
|
||||
torrent.uploaded /
|
||||
(1024 * 1024)
|
||||
|
|
Loading…
Reference in a new issue