add(buttonCWCheckWhiteLists, constraints);
constraints.gridy++;
// Select errors that can be fixed by bot
ListSelectionModel selectionModel = tableCWAutomaticFixing.getSelectionModel();
selectionModel.clearSelection();
for (int i = 0; i < modelCWAutomaticFixing.getRowCount(); i++) {
if (modelCWAutomaticFixing.isBotAlgorithm(i)) {
selectionModel.addSelectionInterval(i, i);
}
}