Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren Edge committed Sep 23, 2024
1 parent 0ccb92a commit 5c726af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/workflows/match_entity_records/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def att_ui(i, any_empty, changed, attsaa):
)
att_name_original = att_name
if att_name == "" and len(att_vals) > 0:
att_name = sorted(att_vals[0].split("::"))[0]
att_name = sorted(att_vals)[0].split("::")[0]

attsaa.append(
AttributeToMatch({"label": att_name, "columns": att_vals})
Expand Down

0 comments on commit 5c726af

Please sign in to comment.