diff --git a/client/coral-admin/src/routes/Community/components/People.css b/client/coral-admin/src/routes/Community/components/People.css index cc3a89295..c4561ace1 100644 --- a/client/coral-admin/src/routes/Community/components/People.css +++ b/client/coral-admin/src/routes/Community/components/People.css @@ -125,4 +125,8 @@ th.header:nth-child(2), th.header:nth-child(3) { background-color: #E45241; border-color: #E45241; color: white; -} \ No newline at end of file +} + +.loadMore { + margin-top: 24px; +} diff --git a/client/coral-admin/src/routes/Community/components/People.js b/client/coral-admin/src/routes/Community/components/People.js index ac6421753..f66ce0752 100644 --- a/client/coral-admin/src/routes/Community/components/People.js +++ b/client/coral-admin/src/routes/Community/components/People.js @@ -65,9 +65,9 @@ class People extends React.Component { viewUserDetail, loadMore, } = this.props; - + const hasResults = !!users.nodes.length; - + return (
@@ -120,7 +120,7 @@ class People extends React.Component { [styles.actionsMenuBanned]: isBanned(user), }, 'talk-admin-user-detail-actions-button')} label={this.getActionMenuLabel(user)} > - + {isSuspended(user) ? this.unsuspendUser({id: user.id})}> Remove Suspension @@ -142,7 +142,7 @@ class People extends React.Component { })}> Ban User } - + @@ -163,6 +163,7 @@ class People extends React.Component {