aurelia-table
aurelia-table copied to clipboard
Table don't completely show if field valueto filter is null
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} |