.. .. @@ -17,7 +17,7 @@ 17 17 18 18 ngOnInit(): void { 19 19 //TODO Move to service 20 - this.http.get("version", /* workaround to avoid OPTIONS method request*/ new BaseRequestOptions())20 + this.http.get("api/version", /* workaround to avoid OPTIONS method request*/ new BaseRequestOptions())21 21 .map((res) => <string>res.json().version) 22 22 .subscribe( 23 23 version => this.securisVersion = version,