fix show toppingset unmatch index
This commit is contained in:
parent
d1330e4f84
commit
ecd88b2e27
6 changed files with 218 additions and 76 deletions
|
|
@ -274,4 +274,14 @@ export class RecipeService {
|
|||
}
|
||||
);
|
||||
}
|
||||
|
||||
async getRawRecipeOfProductCode(country: string, filename: string, productCode: string): Promise<Observable<{}>> {
|
||||
return this._httpClient.get<{}>(
|
||||
environment.api + '/recipes/' + country + '/' + filename + '/' + productCode + '/raw_full',
|
||||
{
|
||||
withCredentials: true,
|
||||
responseType: 'json',
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue