From 013bcf1c242cac2119f6400b2cd167bd8056e01c Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 28 Aug 2025 09:53:43 +0200 Subject: [PATCH] Add options for 720 and 1080 days in selector --- scripts/species_tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/species_tools.php b/scripts/species_tools.php index c034ffc..ac00f7d 100644 --- a/scripts/species_tools.php +++ b/scripts/species_tools.php @@ -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';