diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue index 6be2c5bd..d5f54ee6 100644 --- a/ayanova/src/components/gz-data-table.vue +++ b/ayanova/src/components/gz-data-table.vue @@ -545,7 +545,7 @@ function buildRecords(listData, columndefinitions) { //iterate row and build object representing row data keyed to index //first column is the default column which sets the id for the row var o = { id: row[0].v, columns: {} }; - for (var iColumn = 1; iColumn < row.length; iColumn++) { + for (var iColumn = 0; iColumn < row.length; iColumn++) { var column = row[iColumn]; var dataType = columndefinitions[iColumn].dt;