Skip to content

Commit

Permalink
bug fix related entity
Browse files Browse the repository at this point in the history
  • Loading branch information
jmargutt committed Oct 19, 2024
1 parent afcb0c6 commit 5d4cf7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/routesEspo.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async def kobo_to_espocrm(
elif len(target_field.split(".")) == 3:
target_entity = target_field.split(".")[0]
linked_field = target_field.split(".")[1]
related_entity = linked_field.capitalize()
related_entity = linked_field[0].upper() + linked_field[1:]
related_entity_field = target_field.split(".")[2]
related = True
else:
Expand Down

0 comments on commit 5d4cf7d

Please sign in to comment.