瀏覽代碼

Fix Ingredient property name

Tatiana Inama 6 年之前
父節點
當前提交
80cf480c57
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 }