Skip to content

Commit

Permalink
Fix error in invite existing template display
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmay committed Aug 11, 2024
1 parent 600ae23 commit f2f502e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karaage/plugins/kgapplications/views/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _send_invitation(request, project):
if existing_person is not None and "existing" not in request.POST:
return render(
template_name="kgapplications/project_common_invite_existing.html",
context={"form": form, "person": applicant},
context={"form": form, "person": existing_person},
request=request,
)

Expand Down

0 comments on commit f2f502e

Please sign in to comment.