Saulis / iron-data-table

iron-data-table is a Web Component for displaying data as a table or grid. Built on top of iron-list using Polymer.
Apache License 2.0
147 stars 66 forks source link

error #164

Closed panen6 closed 7 years ago

panen6 commented 7 years ago

iron-data-table/array-datasource.js:12 value&&

...
        if ([undefined, null].indexOf(filter[i].filter) > -1) {
          continue;
        } else if (value&&value.toString().toLowerCase().indexOf(filter[i].filter.toString().toLowerCase()) === -1)                         {   
          return false;
        }
...