diff --git a/core/utils/samples.py b/core/utils/samples.py index 2afa376a..e1e231b9 100644 --- a/core/utils/samples.py +++ b/core/utils/samples.py @@ -1514,7 +1514,7 @@ def get_selection_from_excel_data(data, heading, check_field, field_id): excel_json_data = core.utils.common.jspreadsheet_to_dict(heading, excel_data) for row in excel_json_data: if check_field is not None: - if row[check_field] is True or row[check_field] != "": + if row[check_field] is True: selected.append(row[field_id]) selected_row.append(row) else: diff --git a/wetlab/templates/wetlab/handling_molecules.html b/wetlab/templates/wetlab/handling_molecules.html index 97667b4d..84a9f4e7 100644 --- a/wetlab/templates/wetlab/handling_molecules.html +++ b/wetlab/templates/wetlab/handling_molecules.html @@ -268,7 +268,7 @@