From fb6b4a1ec1159628dc2bcf81d65a8dd4754eb1dc Mon Sep 17 00:00:00 2001 From: Alex Shnitman Date: Thu, 19 Oct 2023 19:20:32 +0300 Subject: [PATCH] fix download ETA dispay --- ui/src/app/downloads.pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/downloads.pipe.ts b/ui/src/app/downloads.pipe.ts index cb3bf92..49927e9 100644 --- a/ui/src/app/downloads.pipe.ts +++ b/ui/src/app/downloads.pipe.ts @@ -16,7 +16,7 @@ export class EtaPipe implements PipeTransform { } const hours = Math.floor(value/3600) const minutes = value % 3600 - return `${hours}h ${Math.floor(minutes/60)}m ${minutes%60}s`; + return `${hours}h ${Math.floor(minutes/60)}m ${Math.floor(minutes%60)}s`; } }