Skip to content
Snippets Groups Projects
Commit fbb1afcd authored by Tifenn Guillas's avatar Tifenn Guillas
Browse files

Fix url

parent cfbaf134
No related branches found
No related tags found
2 merge requests!813.1,!77Stacked form
......@@ -11,6 +11,6 @@ export class DetailService {
retrieveObject(datasetName: string, attributeCriterionId: number, objectSelected: string, attributesOutputList: number[]) {
const query = datasetName + '?c=' + attributeCriterionId + '::eq::' + objectSelected + '&a=' + attributesOutputList.join(';');
return this.http.get<any[]>(this.API_PATH + '/data/' + query);
return this.http.get<any[]>(this.API_PATH + query);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment