This commit is contained in:
crusader
2018-05-29 20:58:50 +09:00
parent 288c9c78c6
commit c4bfb21e9c
4 changed files with 11 additions and 10 deletions

View File

@@ -9,8 +9,6 @@ import {
} from '@angular/core';
import { Store, select, StateObservable } from '@ngrx/store';
import { RPCClientError } from '@loafer/ng-rpc';
import * as ListStore from '@overflow/meta/crawler/store/list';
import { ReadAllCrawlerSelector } from '@overflow/meta/crawler/store';
import { MetaCrawler } from '@overflow/commons-typescript/model/meta';
import { Subscription } from 'rxjs/Subscription';
@@ -27,7 +25,7 @@ export class ServiceSelectorComponent implements OnInit, AfterContentInit, OnDes
@Input() includeServices;
constructor(
private listStore: Store<ListStore.State>,
private listStore: Store<any>,
) {
// this.crawlers$ = listStore.pipe(select(ReadAllCrawlerSelector.select('metaCrawlerList')));
}