1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

feat(frontend): Add Recipe Editor to Assign Units and Foods for Recipe Scaling

This commit is contained in:
hay-kot 2021-08-23 12:24:38 -08:00
parent 04ebc07333
commit 24a4b5b810
10 changed files with 335 additions and 68 deletions

View file

@ -56,15 +56,15 @@ export interface Recipe {
name: string;
slug: string;
image?: unknown;
description?: string;
recipeCategory?: string[];
tags?: string[];
rating?: number;
description: string;
recipeCategory: string[];
tags: string[];
rating: number;
dateAdded?: string;
dateUpdated?: string;
recipeYield?: string;
recipeIngredient?: RecipeIngredient[];
recipeInstructions?: RecipeStep[];
recipeIngredient: RecipeIngredient[];
recipeInstructions: RecipeStep[];
nutrition?: Nutrition;
tools?: string[];
totalTime?: string;