Skip to content

Commit

Permalink
fix(guides url): guides url is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
oyurekten committed Nov 19, 2023
1 parent 735ade2 commit 767dc27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/components/shared/ontology/ontology.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class OntologyComponent implements OnInit, OnChanges {
this.searchedMore = false;
this.loading = true;
this.editorService
.getOntologyTerms(this.wsDomain + this.url + term)
.getOntologyTerms(this.wsDomain + "/" + this.url + term)
.subscribe((terms) => {
this.allvalues = [];
this.loading = false;
Expand Down Expand Up @@ -256,7 +256,7 @@ export class OntologyComponent implements OnInit, OnChanges {
this.loading = true;
this.editorService
.getOntologyTerms(
this.wsDomain +
this.wsDomain + "/" +
this.url +
term +
"&queryFields=MTBLS,MTBLS_Zooma,Zooma,OLS,Bioportal}"
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/metabolights/metabolights.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ export class MetabolightsService extends DataService {
return this.http
.get<IOntologyWrapper>(
this.url.baseURL +
"/studies".replace("studies", "ebi-internal") +
"/ebi-internal" +
"/ontology?term=" +
term +
"&branch=" +
Expand Down

0 comments on commit 767dc27

Please sign in to comment.