Fix issue with supplier location api url

This commit is contained in:
Tom Bloor 2017-09-28 12:47:09 +01:00
parent f402d46db8
commit a622b0d871

View file

@ -268,7 +268,7 @@ export class ApiService {
public getMapData(data) {
data.session_key = this.sessionKey;
return this.http.post(
this.apiUrl + '/v1/suppliers/location',
this.apiUrl + '/v1/supplier/location',
data
).map( response => response.json() );
}