Running the dashboard for the first time and it looked empty, the following change needs to be made for the dashboard graphs and tables to appear on the page:
dashboard.py:
745 - selectedModels.has(r.model) && (!cutoff || r.day >= cutoff)
745 + selectedModels.has(r.model) && (!start || r.day >= start) && (!end || r.day <= end)
Running the dashboard for the first time and it looked empty, the following change needs to be made for the dashboard graphs and tables to appear on the page:
dashboard.py: