Sort data by date when building graphs

This doesn't affect the end result because all collections used the same
order, but it makes debugging easier.
This commit is contained in:
Javi Martín
2024-05-08 21:47:37 +02:00
parent 86e131df26
commit 3fcac3a9d8
2 changed files with 11 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ module Ahoy
def build
data = { x: [] }
dates.each do |date|
dates.sort.each do |date|
# Add the key with a valid date format
data[:x].push date.strftime("%Y-%m-%d")