Fix deleting application members from the team page

This commit is contained in:
George Drummond
2019-05-28 15:22:06 -04:00
parent 227feab972
commit 454181665c
3 changed files with 14 additions and 7 deletions

View File

@@ -129,7 +129,7 @@
DeleteConfirmation(
modal_id=delete_modal_id,
delete_text=('portfolios.applications.remove_member.button' | translate),
delete_action=url_for('applications.remove_member', application_id=application.id, user_id=member_form.data.user_id),
delete_action=url_for('applications.remove_member', application_id=application.id, application_role_id=member_form.data.role_id),
form=member_form
)
}}