From 8dcd8acf73aaac337f64239dd7bbfb410ae1d1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Kilchenmann?= Date: Fri, 29 Nov 2019 12:27:14 +0100 Subject: [PATCH] fix(helper): Bug fix in knora-api version and release link --- src/app/main/help/help.component.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/main/help/help.component.ts b/src/app/main/help/help.component.ts index c151f40331..51e6ff8da9 100644 --- a/src/app/main/help/help.component.ts +++ b/src/app/main/help/help.component.ts @@ -140,13 +140,10 @@ export class HelpComponent implements OnInit { // read and set version of knora const versions: string[] = v.split(' '); - this.apiVersion = versions[0].split('/')[1].substring(0, 5); - this.akkaVersion = versions[1].split('/')[1]; + this.apiVersion = versions[0].split('/')[1]; this.tools[1].title += this.apiVersion; this.tools[1].url += this.apiVersion; - // this.versions[2].label += this.akkaVersion; - // this.versions[2].route += this.akkaVersion; this.loading = false;