Procházet zdrojové kódy

Fix Ingredient property name

Tatiana Inama před 6 roky
rodič
revize
80cf480c57
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      ktchn/src/recipes/model.ts

+ 1 - 1
ktchn/src/recipes/model.ts

@@ -11,7 +11,7 @@ export interface IIngredient {
   quantity: number;
   unit: string;
   state?: string;
-  note?: string;
+  notes?: string;
   _original?: string;
 }