Skip to content

Commit

Permalink
allow full row search when empty cells are present
Browse files Browse the repository at this point in the history
  • Loading branch information
TestClev committed Nov 17, 2023
1 parent 1b75c1b commit 2a3aba0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ export default class Datatable extends LightningElement {
}

if (cols[col].type != 'boolean' && (!row[fieldName] || row[fieldName] == null)) { // No match because the field is empty
break;
continue;
}

switch(cols[col].type) {
Expand Down

0 comments on commit 2a3aba0

Please sign in to comment.