Remove HTML entity from permission choice

Not sure why we had a non-breaking space in here because it didn’t wrap
onto two lines anyway. And it wasn’t working because it was showing up
encoded, rather than as a raw entity.
This commit is contained in:
Chris Hill-Scott
2017-02-23 10:48:10 +00:00
parent aad891d4ce
commit d18334100e

View File

@@ -153,7 +153,7 @@ class RegisterUserFromInviteForm(Form):
class PermissionsForm(Form):
send_messages = BooleanField("Send messages from existing templates")
manage_service = BooleanField("Modify this service, its team, and its templates")
manage_service = BooleanField("Modify this service, its team, and its templates")
manage_api_keys = BooleanField("Create and revoke API keys")