fixed allow decimals in food property amount

This commit is contained in:
vabene1111
2023-06-26 15:47:44 +02:00
parent dcc56fc138
commit 436158f596
4 changed files with 25 additions and 6 deletions

View File

@ -471,10 +471,10 @@ export interface Food {
properties?: Array<FoodProperties> | null;
/**
*
* @type {number}
* @type {string}
* @memberof Food
*/
properties_food_amount?: number;
properties_food_amount: string;
/**
*
* @type {FoodPropertiesFoodUnit}
@ -1112,10 +1112,10 @@ export interface IngredientFood {
properties?: Array<FoodProperties> | null;
/**
*
* @type {number}
* @type {string}
* @memberof IngredientFood
*/
properties_food_amount?: number;
properties_food_amount: string;
/**
*
* @type {FoodPropertiesFoodUnit}