This commit is contained in:
2020-02-26 20:09:10 +00:00
parent 598630ca87
commit 480cbc656d
2 changed files with 3 additions and 6 deletions

View File

@@ -513,8 +513,8 @@ function buildHeaders(columnData) {
return [];
}
var ret = [];
//iterate the columns, skip over the first one as it's the df column and not for display
for (var i = 1; i < columnData.length; i++) {
//iterate the columns
for (var i = 0; i < columnData.length; i++) {
var cm = columnData[i];
var h = {};
h.text = window.$gz.locale.get(cm.cm);