Fix interval dropdown options

This commit is contained in:
Jordan Wages 2025-07-19 00:58:25 -05:00
commit 35c1a00feb
2 changed files with 4 additions and 1 deletions

View file

@ -175,7 +175,7 @@ def _generate_root_index() -> None:
intervals = [
p.name
for p in OUTPUT_DIR.iterdir()
if p.is_dir() and p.name not in {"domains", "global"}
if p.is_dir() and p.name.lower() not in {"domains", "global"}
]
intervals.sort()