Add options for 720 and 1080 days in selector

This commit is contained in:
Alexandre
2025-08-28 09:53:43 +02:00
committed by Nachtzuster
parent d6b853b4eb
commit 013bcf1c24
+1 -1
View File
@@ -416,7 +416,7 @@ function generateMiniGraph(elem, comname, days = 30) {
chartWindow.appendChild(closeButton);
var selector = document.createElement('select');
[30, 180, 360].forEach(function(opt) {
[30, 180, 360, 720, 1080].forEach(function(opt) {
var option = document.createElement('option');
option.value = opt;
option.text = opt + 'd';