Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Sep 19, 2024
1 parent 6825c67 commit dbbe33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybossa/view/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3881,7 +3881,7 @@ def assign_users(short_name):

# Update users with last_name for sorting.
for user in users:
user['last_name'] = get_last_name(user)
user['last_name'] = get_last_name(user.get('fullname', ''))

form = DataAccessForm(request.body)
project_users = json.loads(request.data).get("select_users", []) if request.data else request.form.getlist('select_users')
Expand Down

0 comments on commit dbbe33c

Please sign in to comment.