Recipe edit (WIP): Buttons to add steps and inrgedients

This commit is contained in:
Greg Burri 2024-12-27 12:51:29 +01:00
parent 6876a254e1
commit d4962c98ff
9 changed files with 182 additions and 15 deletions

View file

@ -58,6 +58,6 @@ pub struct Ingredient {
pub id: i64,
pub name: String,
pub comment: String,
pub quantity_value: f64,
pub quantity_value: Option<f64>,
pub quantity_unit: String,
}