From 7056500073d5b7334070585f2bbc9f33dec33468 Mon Sep 17 00:00:00 2001 From: Vijeinath Tissaveerasingham Date: Mon, 8 Feb 2021 14:12:01 +0100 Subject: [PATCH] bugfix: work around for app init parameter --- src/app/app-init.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app-init.service.ts b/src/app/app-init.service.ts index dad5d356..6ce49db7 100644 --- a/src/app/app-init.service.ts +++ b/src/app/app-init.service.ts @@ -53,7 +53,7 @@ export class AppInitService { this._knoraService.login("root@example.com", "test") .pipe( - mergeMap(() => this._knoraService.getAllLists(AppInitService.settings.projectIRI)), + mergeMap(() => this._knoraService.getAllLists("http://rdfh.ch/projects/0826")), mergeMap((lists: ListNodeInfo[]) => forkJoin>(lists.map((list: ListNodeInfo) => this._knoraService.getList(list.id)))) ) .subscribe((fullList: List[]) => {