Skip to content

Commit b02fd63

Browse files
committed
show a minimum amount of fill on the net gauge
1 parent 598f5bd commit b02fd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/dashboard/base-items/widgets/SystemMonitorWidget/SystemMonitorWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const SystemMonitorWidget = ({ config }: SystemMonitorWidgetProps) => {
7272

7373
// If there's any activity at all, ensure it shows at least 1% on the gauge
7474
// This makes even tiny network activity visible
75-
const normalizedMbps = bytesPerSecond > 0 ? Math.max(mbps, 15) : 0;
75+
const normalizedMbps = bytesPerSecond > 0 ? Math.max(mbps, 30) : 0;
7676

7777
// If less than 1000 KB/s, show in KB/s
7878
if (bytesPerSecond < 1000 * 1024) {

0 commit comments

Comments
 (0)