Skip to content

Commit

Permalink
uri encode biomarkers
Browse files Browse the repository at this point in the history
  • Loading branch information
hillalex committed Sep 18, 2024
1 parent 6806337 commit 6c91ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/dataService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class DataService {
return await this._api
.ignoreSuccess()
.ignoreErrors()
.get<DataSeries>("/dataset/" + selectedDataset + "/trace/" + biomarker + "/" + queryString)
.get<DataSeries>("/dataset/" + selectedDataset + "/trace/" + encodeURIComponent(biomarker) + "/" + queryString)
}
}

Expand Down

0 comments on commit 6c91ae8

Please sign in to comment.