Fix list form input view issues

Fix traffic view issues
This commit is contained in:
chen08209
2025-03-05 15:11:19 +08:00
parent 5184ed6fc7
commit 5dda2854be
11 changed files with 248 additions and 211 deletions

View File

@@ -334,7 +334,7 @@ class TrafficValue {
}
if (_value > pow(1024, 1)) {
return TrafficValueShow(
value: _value / pow(1024, 2),
value: _value / pow(1024, 1),
unit: TrafficUnit.KB,
);
}