From 2e8a8815a86fc230f8fde4b97f6189b2237e077f Mon Sep 17 00:00:00 2001 From: Hera Zhao Date: Mon, 13 Apr 2026 18:23:40 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20loadRecipes=E6=98=A0=E5=B0=84volume?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=EF=BC=8C=E5=8D=A1=E7=89=87=E6=89=8D=E8=83=BD?= =?UTF-8?q?=E8=AF=BB=E5=88=B0stored=20volume?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/stores/recipes.js | 1 + 1 file changed, 1 insertion(+) 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,