fix(inbounds): step Total Flow input by 1 GB instead of 0.1

Matches the same nudge fix applied to the client form's Total
Sent/Received field.
This commit is contained in:
MHSanaei 2026-05-23 16:15:10 +02:00
parent 0abcaae32c
commit 2c782f6b41
No known key found for this signature in database
GPG key ID: 7E4060F2FBE5AB7A

View file

@ -966,7 +966,7 @@ export default function InboundFormModal({
<InputNumber
value={totalGB}
min={0}
step={0.1}
step={1}
onChange={(v) => {
form.total = NumberFormatter.toFixed((Number(v) || 0) * SizeFormatter.ONE_GB, 0);
refresh();