diff --git a/client/coral-admin/src/containers/Community/Table.js b/client/coral-admin/src/containers/Community/Table.js
index aacc9c82f..2924e7fd3 100644
--- a/client/coral-admin/src/containers/Community/Table.js
+++ b/client/coral-admin/src/containers/Community/Table.js
@@ -65,6 +65,7 @@ class Table extends Component {
label={lang.t('community.role')}
onChange={role => this.onRoleChange(row.id, role)}>
+
diff --git a/models/user.js b/models/user.js
index 458ac68f0..ec215b3fa 100644
--- a/models/user.js
+++ b/models/user.js
@@ -5,7 +5,8 @@ const uuid = require('uuid');
// USER_ROLES is the array of roles that is permissible as a user role.
const USER_ROLES = [
'ADMIN',
- 'MODERATOR'
+ 'MODERATOR',
+ 'STAFF'
];
// USER_STATUS is the list of statuses that are permitted for the user status.