mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-06 05:04:22 +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
|
<InputNumber
|
||||||
value={totalGB}
|
value={totalGB}
|
||||||
min={0}
|
min={0}
|
||||||
step={0.1}
|
step={1}
|
||||||
onChange={(v) => {
|
onChange={(v) => {
|
||||||
form.total = NumberFormatter.toFixed((Number(v) || 0) * SizeFormatter.ONE_GB, 0);
|
form.total = NumberFormatter.toFixed((Number(v) || 0) * SizeFormatter.ONE_GB, 0);
|
||||||
refresh();
|
refresh();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue