From 4a353fce910f28fa50155a2e40c59e97203cb935 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Wed, 28 Nov 2018 10:52:34 +0100 Subject: [PATCH] Added parameter to hide loading message --- src/app/shared/loading/loading.component.html | 2 +- src/app/shared/loading/loading.component.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/shared/loading/loading.component.html b/src/app/shared/loading/loading.component.html index c628f75f7b..efec4e597e 100644 --- a/src/app/shared/loading/loading.component.html +++ b/src/app/shared/loading/loading.component.html @@ -1,5 +1,5 @@
- +
diff --git a/src/app/shared/loading/loading.component.ts b/src/app/shared/loading/loading.component.ts index 8276ab574a..63698018c6 100644 --- a/src/app/shared/loading/loading.component.ts +++ b/src/app/shared/loading/loading.component.ts @@ -12,6 +12,7 @@ import { Subscription } from 'rxjs/Subscription'; export class LoadingComponent implements OnDestroy, OnInit { @Input() message: string; + @Input() showMessage = true; private subscription: Subscription;