From 5d30ea88358f2b8005289ce9c7e81e1bd3e6b5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Mon, 4 Mar 2019 13:59:33 +0100 Subject: [PATCH] Fix spacing after comma --- app/assets/javascripts/stats.js.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/stats.js.coffee b/app/assets/javascripts/stats.js.coffee index 5a2f6c188..5bfa0a525 100644 --- a/app/assets/javascripts/stats.js.coffee +++ b/app/assets/javascripts/stats.js.coffee @@ -3,7 +3,7 @@ buildGraph = (el) -> url = $(el).data 'graph' - conf = bindto: el, data: { x: 'x', url: url, mimeType: 'json' }, axis: { x: { type: 'timeseries',tick: { format: '%Y-%m-%d' } } } + conf = bindto: el, data: { x: 'x', url: url, mimeType: 'json' }, axis: { x: { type: 'timeseries', tick: { format: '%Y-%m-%d' } } } graph = c3.generate conf App.Stats =