From 3cf7d25f4c54b6de9e1dd88e8d207100fcce8c11 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 6 Dec 2019 16:30:07 +0200 Subject: improved error handling --- ui/src/app/app.component.html | 4 ++-- ui/src/app/downloads.service.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'ui') diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html index 9e927ed..e0c67cd 100644 --- a/ui/src/app/app.component.html +++ b/ui/src/app/app.component.html @@ -81,11 +81,11 @@ -
+
- {{ download.value.title }} + {{ download.value.title }} diff --git a/ui/src/app/downloads.service.ts b/ui/src/app/downloads.service.ts index 823aa60..935feba 100644 --- a/ui/src/app/downloads.service.ts +++ b/ui/src/app/downloads.service.ts @@ -14,6 +14,7 @@ interface Download { title: string; url: string, status: string; + msg: string; percent: number; speed: number; eta: number; -- cgit