Reduced the minimum in CH settings (#8376)

This commit is contained in:
Matteo Biscosi 2024-05-30 05:15:43 -04:00
parent 965794577b
commit 0c2391c5fb

View file

@ -1,4 +1,4 @@
--
--
-- (C) 2013-24 - ntop.org
--
local dirs = ntop.getDirs()
@ -2091,7 +2091,7 @@ if auth.has_capability(auth.capabilities.preferences) then
subpage_active.entries["toggle_flow_aggregated_limit"].description, "ntopng.prefs.",
"max_aggregated_flows_upperbound", prefs.max_aggregated_flows_upperbound or 10000, "number",
showAggregateFlowsPrefs, false, nil, {
min = 10000,
min = 1000,
max = 10000000
})