Skip to content

Commit

Permalink
bugfix: work around for app init parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Vijeinath committed Feb 8, 2021
1 parent 02907b9 commit 7056500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app-init.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AppInitService {

this._knoraService.login("[email protected]", "test")
.pipe(
mergeMap(() => this._knoraService.getAllLists(AppInitService.settings.projectIRI)),
mergeMap(() => this._knoraService.getAllLists("http://rdfh.ch/projects/0826")),
mergeMap((lists: ListNodeInfo[]) => forkJoin<Observable<List>>(lists.map((list: ListNodeInfo) => this._knoraService.getList(list.id))))
)
.subscribe((fullList: List[]) => {
Expand Down

0 comments on commit 7056500

Please sign in to comment.