Skip to content

Commit

Permalink
fix: use correct handle in views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Jan 10, 2025
1 parent d876cca commit f046ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def render_members_list(workspace: Workspace, current_member: WorkspaceMembershi
with gui.tag("td"):
name = m.user.full_name(current_user=current_member.user)
if handle := m.user.get_handle():
with gui.link(to=m.user.handle.get_app_url()):
with gui.link(to=handle.get_app_url()):
gui.html(html_lib.escape(name))
else:
gui.html(html_lib.escape(name))
Expand Down

0 comments on commit f046ce6

Please sign in to comment.