Skip to content

Commit

Permalink
Ontology search fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oyurekten committed Jan 19, 2024
1 parent 8d8eb25 commit 011c3d9
Showing 1 changed file with 2 additions and 2 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 @@ -156,7 +156,7 @@ export class OntologyComponent implements OnInit, OnChanges {
this.searchedMore = false;
this.loading = true;
this.editorService
.getOntologyTerms(this.join(this.join(this.baseURL, this.url), term))
.getOntologyTerms(this.join(this.baseURL, this.url) + term)
.subscribe((terms) => {
this.allvalues = [];
this.loading = false;
Expand Down Expand Up @@ -270,7 +270,7 @@ export class OntologyComponent implements OnInit, OnChanges {
.getOntologyTerms(
this.join(this.baseURL, this.url) +
term +
"&queryFields=MTBLS,MTBLS_Zooma,Zooma,OLS,Bioportal}"
"&queryFields={MTBLS,MTBLS_Zooma,Zooma,OLS,Bioportal}"
)
.subscribe((terms) => {
this.allvalues = [];
Expand Down

0 comments on commit 011c3d9

Please sign in to comment.