From d896257602d8e6f5866fa02cba734761887b103c Mon Sep 17 00:00:00 2001 From: shibao Date: Tue, 19 Mar 2024 00:28:30 -0400 Subject: [PATCH] actually fix bar graph --- CHANGELOG.md | 3 +++ assets/js/shot_log_chart.js | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e4f9d7..7ccfa7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# v0.9.9 +- Actually fix bar graph + # v0.9.8 - Make bar graph ignore empty days - Update dependencies diff --git a/assets/js/shot_log_chart.js b/assets/js/shot_log_chart.js index a235078..f9af5aa 100644 --- a/assets/js/shot_log_chart.js +++ b/assets/js/shot_log_chart.js @@ -55,7 +55,7 @@ export default { } }, x: { - type: 'time', + type: 'timeseries', time: { unit: 'day' }, diff --git a/mix.exs b/mix.exs index 538ec18..439b84c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Cannery.MixProject do def project do [ app: :cannery, - version: "0.9.8", + version: "0.9.9", elixir: "1.16.1", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,