Create typed policy editor component
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ei-coordinator / ei-producer.datasource.ts
index 439352d..cb4809c 100644 (file)
@@ -59,7 +59,7 @@ export class EIProducerDataSource {
         this.producers = [];
 
         this.eiSvc.getProducerIds().pipe(
-            mergeMap(prodIds => 
+            mergeMap(prodIds =>
                 forkJoin(prodIds.map(id => {
                     return forkJoin([
                         of(id),
@@ -67,7 +67,7 @@ export class EIProducerDataSource {
                         this.eiSvc.getProducerStatus(id)
                     ])
                 })
-            )),
+                )),
             finalize(() => this.loadingSubject.next(false))
         ).subscribe(result => {
             this.producers = result.map(producer => {