Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

Commit d063e5a

Browse files
committed
Fixes #3
1 parent cd98d8b commit d063e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
// TODO(sorvell): selection currently cannot be maintained when
176176
// items are added or deleted.
177177
initalizeData: function() {
178-
var exampleDatum = this.data[0];
178+
var exampleDatum = this.data[0] || {};
179179
this._propertyNames = Object.getOwnPropertyNames(exampleDatum);
180180
this._physicalData = new Array(this._physicalCount);
181181
for (var i = 0; i < this._physicalCount; ++i) {

0 commit comments

Comments
 (0)