From eefc3271932b08dc686f27645a7b2f677cedd99e Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 29 Oct 2018 12:16:40 -0400 Subject: [PATCH] use project ID to form the modal name --- templates/workspaces/members/edit.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/workspaces/members/edit.html b/templates/workspaces/members/edit.html index 339f154b..e82cdaae 100644 --- a/templates/workspaces/members/edit.html +++ b/templates/workspaces/members/edit.html @@ -53,8 +53,8 @@ {% for project in projects %} - {% set revoke_modal_name = project.name + 'RevokeModal' %} - + {% set revoke_modal_name = string(project.id) + 'RevokeModal' %} +