Skip to content

Commit

Permalink
Fix error in org/manage url (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaslinhares authored Jun 12, 2024
1 parent e7f946d commit f88cc2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion temba/orgs/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2081,7 +2081,8 @@ def dispatch(self, *args, **kwargs):

def get_owner(self, obj):
owner = obj.get_owner()
return f"{owner.name} ({owner.email})"
full_name = f"{owner.first_name} {owner.last_name}"
return f"{full_name} ({owner.email})"

def derive_queryset(self, **kwargs): # pragma: no cover
obj_filter = self.request.GET.get("filter")
Expand Down

0 comments on commit f88cc2e

Please sign in to comment.