From 1ed51c3667834d1cdbe5973cdd0e694ac41d33e3 Mon Sep 17 00:00:00 2001 From: Pantry Lead Agent Date: Wed, 25 Feb 2026 01:23:23 +0000 Subject: [PATCH] feat: add low-stock threshold field to AddItemForm (#67) --- app/components/inventory/AddItemForm.vue | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/components/inventory/AddItemForm.vue b/app/components/inventory/AddItemForm.vue index cf16d44..310cbd2 100644 --- a/app/components/inventory/AddItemForm.vue +++ b/app/components/inventory/AddItemForm.vue @@ -57,6 +57,21 @@ /> + + + + + { quantity: form.quantity, unit_id: form.unit_id, expiry_date: form.expiry_date || null, + low_stock_threshold: form.low_stock_threshold, notes: form.notes.trim() || null })