From d486a856561cb24f8f4413e70dd4eda65a1b8770 Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 11 Feb 2021 10:50:12 +0200 Subject: [PATCH] fixed dld status --- .../downloads-list-screen.component.html | 4 ++-- apps/red-ui/src/app/utils/file-download-utils.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/red-ui/src/app/screens/downloads-list-screen/downloads-list-screen.component.html b/apps/red-ui/src/app/screens/downloads-list-screen/downloads-list-screen.component.html index 733ce379b..65fff0734 100644 --- a/apps/red-ui/src/app/screens/downloads-list-screen/downloads-list-screen.component.html +++ b/apps/red-ui/src/app/screens/downloads-list-screen/downloads-list-screen.component.html @@ -36,11 +36,11 @@
- {{ download.status }} + {{ download.inProgress ? 'DOWNLOADING' : download.status }}
-
+
, altName?: string) { } catch (e) { console.log('[REDACTION] Failed to parse content-disposition: ', contentDisposition); } + console.log('save'); saveAs(event.body, fileName ? fileName : altName); }