diff --git a/flow_screen_components/datatable/force-app/main/default/lwc/datatable/datatable.js b/flow_screen_components/datatable/force-app/main/default/lwc/datatable/datatable.js index 83584720d..f76c9bc86 100644 --- a/flow_screen_components/datatable/force-app/main/default/lwc/datatable/datatable.js +++ b/flow_screen_components/datatable/force-app/main/default/lwc/datatable/datatable.js @@ -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) {