From ea67951dd4b6c54aeb1581920e85085a05eb13d4 Mon Sep 17 00:00:00 2001 From: zhang96110 Date: Wed, 1 Apr 2026 09:34:20 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=E6=89=AB=E7=A0=81?= =?UTF-8?q?=E5=85=A5=E5=BA=93=E4=B8=8B=E6=8B=89=E6=A1=86=E7=9A=84=20status?= =?UTF-8?q?=3Dactive=20=E8=BF=87=E6=BB=A4=EF=BC=8C=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=85=A8=E9=83=A8=E8=80=97=E6=9D=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/ConsumableManagement.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/ConsumableManagement.jsx b/frontend/src/pages/ConsumableManagement.jsx index 41f0d23..9bec2aa 100644 --- a/frontend/src/pages/ConsumableManagement.jsx +++ b/frontend/src/pages/ConsumableManagement.jsx @@ -177,7 +177,7 @@ function ConsumableManagement() { const fetchAllConsumablesForScan = useCallback(async () => { try { const response = await axios.get('/api/consumables', { - params: { page: 1, pageSize: 9999, status: 'active' }, + params: { page: 1, pageSize: 9999 }, }); setAllConsumablesForScan(response.data.consumables || []); } catch (error) {