Skip to content

Commit

Permalink
Fix #817
Browse files Browse the repository at this point in the history
  • Loading branch information
limonte committed Mar 23, 2017
1 parent ba59cfb commit 4afad98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vaadin-grid-array-data-provider-behavior.html
Expand Up @@ -64,7 +64,7 @@
var path = arrayToCheck[i].path;

// skip simple paths
if (path.indexOf('.') === -1) {
if (!path || path.indexOf('.') === -1) {
continue;
}

Expand Down

0 comments on commit 4afad98

Please sign in to comment.