tochoromero / aurelia-table

Simple functional data table for Aurelia
https://tochoromero.github.com/aurelia-table
MIT License
67 stars 25 forks source link

Table don't completely show if field valueto filter is null #67

Open behel33 opened 6 years ago

behel33 commented 6 years ago

My data look like let dataList = [{ id: 1, name:'toto', companyName :'Toto SARL' }, { id:0, name:'titi', companyName : null }], { id: 1, name:'tutu', companyName :'Tutu SARL' }; Il I use filter filters = [ { value: '', keys: ['name', 'companyName '] } ]; my table : `

${name} ${companyName}
` Then I see only the first line ! If i replace null by '' I see the 3 lines ! Can'you do something ?