Skip to content

Commit

Permalink
fix(helper): Bug fix in knora-api version and release link
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann authored Nov 29, 2019
1 parent ee77ee6 commit 8dcd8ac
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app/main/help/help.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 8dcd8ac

Please sign in to comment.