LP1821382 Angular lint repairs
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / share / holdings / copy-alerts-dialog.component.ts
index e0ce763..630126b 100644 (file)
@@ -168,18 +168,18 @@ export class CopyAlertsDialogComponent
                 }
             },
             err => {
-                this.errorMsg.current().then(msg => this.toast.danger(msg))
+                this.errorMsg.current().then(msg => this.toast.danger(msg));
             }
         );
     }
 
     applyChanges() {
         const alerts = this.copy.copy_alerts().filter(a => a.ischanged());
-        if (alerts.length === 0) { return ;}
+        if (alerts.length === 0) { return; }
         this.pcrud.update(alerts).toPromise().then(
             ok => this.successMsg.current().then(msg => this.toast.success(msg)),
             err => this.errorMsg.current().then(msg => this.toast.danger(msg))
-        )
+        );
     }
 }