From 0abcaae32ca2961769e5d0bf0b08c6a4cf94e0e6 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Sat, 23 May 2026 16:14:03 +0200 Subject: [PATCH] fix(clients): step traffic input by 1 GB instead of 0.1 The +/- buttons on the Total Sent/Received field nudged in 0.1 GB increments which is too granular for typical use. Set step=1 so each press moves a whole GB; users can still type decimal values directly. --- frontend/src/pages/clients/ClientBulkAddModal.tsx | 2 +- frontend/src/pages/clients/ClientFormModal.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/clients/ClientBulkAddModal.tsx b/frontend/src/pages/clients/ClientBulkAddModal.tsx index 43358b78..1b15267f 100644 --- a/frontend/src/pages/clients/ClientBulkAddModal.tsx +++ b/frontend/src/pages/clients/ClientBulkAddModal.tsx @@ -308,7 +308,7 @@ export default function ClientBulkAddModal({ )} - update('totalGB', Number(v) || 0)} /> + update('totalGB', Number(v) || 0)} /> diff --git a/frontend/src/pages/clients/ClientFormModal.tsx b/frontend/src/pages/clients/ClientFormModal.tsx index 67b07647..616e24ab 100644 --- a/frontend/src/pages/clients/ClientFormModal.tsx +++ b/frontend/src/pages/clients/ClientFormModal.tsx @@ -393,7 +393,7 @@ export default function ClientFormModal({ - update('totalGB', Number(v) || 0)} />