mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 20:54:14 +00:00
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:
parent
0abcaae32c
commit
2c782f6b41
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue