fixed issues with ngrx platform upgrade: selectors, tests and router state in the dev tools

This commit is contained in:
Art Lowel
2017-09-06 16:50:01 +02:00
parent 32e91962f3
commit 30ee3859c8
16 changed files with 69 additions and 39 deletions

View File

@@ -92,7 +92,7 @@ export class ObjectCacheService {
}
getRequestHrefBySelfLink(self: string): Observable<string> {
return this.store.select('index/href', self)
return this.store.select(uuidFromHrefSelector(self))
.flatMap((uuid: string) => this.getRequestHref(uuid));
}