Console: Increase interval change for larger/smaller interval buttons on /graph

This commit is contained in:
zzz
2024-11-04 12:52:29 -05:00
parent b2b86b2767
commit 1e5b850a92

View File

@@ -329,13 +329,13 @@ public class GraphHelper extends FormHandler {
_out.write("<br>");
if (_periodCount < MAX_C) {
_out.write(link(_stat, _showEvents, _periodCount * 2, _end, _width, _height));
_out.write(link(_stat, _showEvents, _periodCount * 3, _end, _width, _height));
_out.write(_t("Larger interval"));
_out.write("</a> - ");
}
if (_periodCount > MIN_C) {
_out.write(link(_stat, _showEvents, _periodCount / 2, _end, _width, _height));
_out.write(link(_stat, _showEvents, _periodCount / 3, _end, _width, _height));
_out.write(_t("Smaller interval"));
_out.write("</a>");
}