diff options
Diffstat (limited to 'admin/public/votes.js')
-rw-r--r-- | admin/public/votes.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/public/votes.js b/admin/public/votes.js index 62ff374..1bde08b 100644 --- a/admin/public/votes.js +++ b/admin/public/votes.js @@ -1,11 +1,11 @@ let date; let chart; -fetch("api/votes") +fetch("/admin/api/votes") .then((response) => response.json()) .then((response) => { data = response; - render("bar"); + render("pie"); }); function render(type) { @@ -42,7 +42,7 @@ function render(type) { } let index = 0; -const types = ["pie", "doughnut", "polarArea", "radar", "line", "bar"]; +const types = ["doughnut", "bar", "polarArea", "radar", "line", "pie"]; document.getElementById("switch").addEventListener("click", () => { chart.destroy(); render(types[index]); |