We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3892f commit ed82c14Copy full SHA for ed82c14
src/server/utils/ElasticsearchResponseUtils.gs
@@ -403,7 +403,7 @@ var ElasticsearchResponseUtils_ = (function() {
403
if (i < numDataCols) {
404
if (rowIsArray) {
405
var index = fullCols[filteredCols[i]].index
406
- if (index < row.size) {
+ if (index < row.length) {
407
colArray.push(row[index])
408
} else {
409
colArray.push("") //(probably a skip col)
0 commit comments