Allow user to save without changing user's role

This commit is contained in:
Montana
2018-09-05 13:51:07 -04:00
parent 1b8233af89
commit 109249d953
4 changed files with 16 additions and 6 deletions

View File

@@ -9,5 +9,5 @@ from .data import WORKSPACE_ROLES
class UpdateMemberForm(Form):
workspace_role = SelectField(
"Workspace Role", choices=WORKSPACE_ROLES, validators=[Optional()], default=""
"Workspace Role", choices=WORKSPACE_ROLES, validators=[Optional()]
)