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`; } }