diff --git a/frontend/src/stores/recipes.js b/frontend/src/stores/recipes.js index 42ed836..a818f86 100644 --- a/frontend/src/stores/recipes.js +++ b/frontend/src/stores/recipes.js @@ -20,6 +20,7 @@ export const useRecipesStore = defineStore('recipes', () => { name: r.name, en_name: r.en_name ?? '', note: r.note ?? '', + volume: r.volume ?? '', tags: r.tags ?? [], ingredients: (r.ingredients ?? []).map((ing) => ({ oil: ing.oil_name ?? ing.oil ?? ing.name,