소스 검색

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;
 }