show recipe and allow delete in ingredient editor

This commit is contained in:
vabene1111
2022-04-17 23:25:22 +02:00
parent f0d59a8c9c
commit d9dd0a594e
3 changed files with 46 additions and 4 deletions

View File

@@ -752,6 +752,12 @@ export interface Ingredient {
* @memberof Ingredient
*/
original_text?: string | null;
/**
*
* @type {string}
* @memberof Ingredient
*/
used_in_recipes?: string;
}
/**
*
@@ -1917,6 +1923,12 @@ export interface RecipeIngredients {
* @memberof RecipeIngredients
*/
original_text?: string | null;
/**
*
* @type {string}
* @memberof RecipeIngredients
*/
used_in_recipes?: string;
}
/**
*