Update new-template-dialog.component.ts

This commit is contained in:
piotrpekala7 2020-09-08 12:53:02 +02:00
parent 81bc3cb3bd
commit 93532d3274

View File

@ -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() {