Skip to content
Snippets Groups Projects
Commit a3b64585 authored by paf's avatar paf
Browse files

linting

parent eaa8c63b
No related branches found
No related tags found
No related merge requests found
import {Component, OnDestroy, OnInit} from '@angular/core'; import {Component, OnDestroy, OnInit} from '@angular/core';
import {AccessObject, AuthAccessKeyType, AuthData, WorkspaceData} from '../../app.interfaces'; import {AccessObject, AuthAccessKeyType, AuthData, WorkspaceData} from '../../app.interfaces';
import {from, Subscription} from "rxjs"; import {from, Subscription} from 'rxjs';
import {Router} from "@angular/router"; import {Router} from '@angular/router';
import {BackendService} from "../../backend.service"; import {BackendService} from '../../backend.service';
import {MainDataService} from "../../maindata.service"; import {MainDataService} from '../../maindata.service';
import {concatMap} from "rxjs/operators"; import {concatMap} from 'rxjs/operators';
import {CustomtextService} from "iqb-components"; import {CustomtextService} from 'iqb-components';
@Component({ @Component({
templateUrl: './monitor-starter.component.html', templateUrl: './monitor-starter.component.html',
...@@ -49,9 +49,9 @@ export class MonitorStarterComponent implements OnInit, OnDestroy { ...@@ -49,9 +49,9 @@ export class MonitorStarterComponent implements OnInit, OnDestroy {
this.getWorkspaceDataSubscription = from(scopeIdList).pipe( this.getWorkspaceDataSubscription = from(scopeIdList).pipe(
concatMap(monitorScopeId => { concatMap(monitorScopeId => {
if (authData.access[AuthAccessKeyType.TEST_GROUP_MONITOR]) { if (authData.access[AuthAccessKeyType.TEST_GROUP_MONITOR]) {
return this.bs.getGroupData(monitorScopeId) return this.bs.getGroupData(monitorScopeId);
} else if (authData.access[AuthAccessKeyType.WORKSPACE_MONITOR]) { } else if (authData.access[AuthAccessKeyType.WORKSPACE_MONITOR]) {
return this.bs.getWorkspaceData(monitorScopeId) return this.bs.getWorkspaceData(monitorScopeId);
} }
})).subscribe( })).subscribe(
wsData => this.accessObjects.push(wsData), wsData => this.accessObjects.push(wsData),
...@@ -70,7 +70,7 @@ export class MonitorStarterComponent implements OnInit, OnDestroy { ...@@ -70,7 +70,7 @@ export class MonitorStarterComponent implements OnInit, OnDestroy {
} else { } else {
this.mds.setSpinnerOff(); this.mds.setSpinnerOff();
} }
}) });
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment