From b15efdcf190458b4275b5e2b02dc063a9e2d507e Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 26 Feb 2020 20:12:23 +0000 Subject: [PATCH] --- ayanova/src/components/gz-data-table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;