We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0c3eac commit 5d66da7Copy full SHA for 5d66da7
src/app/_components/_templates/list-view/list-view.component.ts
@@ -871,7 +871,7 @@ export class ListViewComponent implements OnInit {
871
bVisible = false;
872
for (let col of this.displayedColumns$) {
873
// filter is lower case
874
- if (data[col].toString().toLowerCase().indexOf(filter) >= 0) {
+ if (data[col] && data[col].toString().toLowerCase().indexOf(filter) >= 0) {
875
bVisible = true;
876
break;
877
}
0 commit comments