From f5c40d54ff3f3cbcb4c705a202f8631799d9cb8a Mon Sep 17 00:00:00 2001 From: controlol Date: Thu, 4 Nov 2021 00:50:19 +0100 Subject: [PATCH] show total speed of the job --- src/components/job.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/job.jsx b/src/components/job.jsx index 2f06213..a24348a 100644 --- a/src/components/job.jsx +++ b/src/components/job.jsx @@ -121,6 +121,9 @@ class Job extends Component {

Progress:

{ ((stats.bytes / stats.totalBytes) * 100 || 0).toFixed(2) } %

+

Speed:

+

{ bytesToString(stats.speed, { speed: true }) }

+ Cancel { this.renderActiveTransfer() }