From 93532d3274705a749976025a0bc675a0eb68bbe1 Mon Sep 17 00:00:00 2001 From: piotrpekala7 <31202938+piotrpekala7@users.noreply.github.com> Date: Tue, 8 Sep 2020 12:53:02 +0200 Subject: [PATCH] Update new-template-dialog.component.ts --- .../new-template-dialog/new-template-dialog.component.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/components/project-map/new-template-dialog/new-template-dialog.component.ts b/src/app/components/project-map/new-template-dialog/new-template-dialog.component.ts index a141fa2e..c0efeda1 100644 --- a/src/app/components/project-map/new-template-dialog/new-template-dialog.component.ts +++ b/src/app/components/project-map/new-template-dialog/new-template-dialog.component.ts @@ -176,9 +176,15 @@ export class NewTemplateDialogComponent implements OnInit { } updateAppliances() { + this.progressService.activate(); this.applianceService.updateAppliances(this.server).subscribe((appliances) => { this.appliances = appliances; - }) + this.progressService.deactivate(); + this.toasterService.success('Appliances are up-to-date.'); + }, error => { + this.progressService.deactivate(); + this.toasterService.error('Appliances were not updated correctly.'); + }); } refreshImages() {