From 0baba821b0e6f5abbd405dcccf3bfc9dd5dfffd4 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Thu, 21 Nov 2024 11:44:26 -0600 Subject: [PATCH] Fix chart --- main.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.go b/main.go index 83cf0c7..268f76e 100644 --- a/main.go +++ b/main.go @@ -968,7 +968,7 @@ func getTemplateContent(name string) string { backgroundColor: '#f5c2e7', borderColor: '#f5c2e7', fill: true, - order: 3 + order: 3, }, { label: '4-10 seeders', @@ -976,7 +976,7 @@ func getTemplateContent(name string) string { backgroundColor: '#f9e2af', borderColor: '#f9e2af', fill: true, - order: 2 + order: 2, }, { label: '>10 seeders', @@ -984,9 +984,9 @@ func getTemplateContent(name string) string { backgroundColor: '#74c7ec', borderColor: '#74c7ec', fill: true, - order: 1 - } - ] + order: 1, + }, + ], }, options: { responsive: true, @@ -1035,10 +1035,10 @@ func getTemplateContent(name string) string { intersect: false, }, }, - }) + }); } - createChart(); + createChart();