Fix refresh on system console user page (#5222)

Этот коммит содержится в:
Joram Wilander
2017-01-30 10:35:29 -05:00
коммит произвёл George Goldberg
родитель 30b06968e5
Коммит 5b245c3a07

Просмотреть файл

@@ -269,26 +269,21 @@ export default class UserList extends React.Component {
/>
</h3>
<FormError error={this.state.serverError}/>
<form
className='form-horizontal'
role='form'
>
<div className='more-modal__list member-list-holder'>
<SearchableUserList
users={usersToDisplay}
usersPerPage={USERS_PER_PAGE}
total={this.state.total}
extraInfo={extraInfo}
nextPage={this.nextPage}
search={this.search}
actions={[AdminTeamMembersDropdown]}
actionProps={{
doPasswordReset: this.doPasswordReset
}}
actionUserProps={actionUserProps}
/>
</div>
</form>
<div className='more-modal__list member-list-holder'>
<SearchableUserList
users={usersToDisplay}
usersPerPage={USERS_PER_PAGE}
total={this.state.total}
extraInfo={extraInfo}
nextPage={this.nextPage}
search={this.search}
actions={[AdminTeamMembersDropdown]}
actionProps={{
doPasswordReset: this.doPasswordReset
}}
actionUserProps={actionUserProps}
/>
</div>
<ResetPasswordModal
user={this.state.user}
show={this.state.showPasswordModal}