From bab7b77a83abcf65894408bcc5960deb51de234b Mon Sep 17 00:00:00 2001 From: rozetko Date: Wed, 23 May 2018 22:14:52 +0300 Subject: [PATCH] Run anomaly status waiter on anomaly create --- src/controllers/anomaly_controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/anomaly_controller.ts b/src/controllers/anomaly_controller.ts index f555657..c22de7c 100644 --- a/src/controllers/anomaly_controller.ts +++ b/src/controllers/anomaly_controller.ts @@ -73,6 +73,7 @@ export class AnomalyController { this._creatingNewAnomalyType = false; this._savingNewAnomalyType = false; this.runAnomalyTypeAlertEnabledWaiter(this._newAnomalyType); + this._runAnomalyTypeStatusWaiter(this._newAnomalyType); } get creatingAnomalyType() { return this._creatingNewAnomalyType; }