diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-03 23:23:37 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-03 23:23:37 -0700 |
commit | e648374283b107c907246bc62bf22a06ad352158 (patch) | |
tree | fa4449a379a681717b765615357238155391ae2c /system/api/analytics/init.go | |
parent | d0504bb75a72aaa1e0112db6e8eedf0d938d8f3b (diff) |
testing fix for time format with chart labels
Diffstat (limited to 'system/api/analytics/init.go')
-rw-r--r-- | system/api/analytics/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/api/analytics/init.go b/system/api/analytics/init.go index 41767f1..2368b2b 100644 --- a/system/api/analytics/init.go +++ b/system/api/analytics/init.go @@ -162,7 +162,7 @@ CHECK_REQUEST: for j := range times { // format times[j] (time.Time) into a MM/DD format for dates - dates[j] = times[j].Format("_1/_2") + dates[j] = times[j].Format(`01/02`) // if on today, there will be no next iteration to set values for // day prior so all valid requests belong to today |