Closed rtnpro closed 9 years ago
Object.keys(data[0]) in https://github.com/fedora-infra/statscache/blob/develop/statscache/templates/dashboard.html#L42 fails when data == []
Object.keys(data[0])
data == []
Return if data.length === 0.
data.length === 0
Problem
Object.keys(data[0])
in https://github.com/fedora-infra/statscache/blob/develop/statscache/templates/dashboard.html#L42 fails whendata == []
Solution
Return if
data.length === 0
.