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> </h3>
<FormError error={this.state.serverError}/> <FormError error={this.state.serverError}/>
<form <div className='more-modal__list member-list-holder'>
className='form-horizontal' <SearchableUserList
role='form' users={usersToDisplay}
> usersPerPage={USERS_PER_PAGE}
<div className='more-modal__list member-list-holder'> total={this.state.total}
<SearchableUserList extraInfo={extraInfo}
users={usersToDisplay} nextPage={this.nextPage}
usersPerPage={USERS_PER_PAGE} search={this.search}
total={this.state.total} actions={[AdminTeamMembersDropdown]}
extraInfo={extraInfo} actionProps={{
nextPage={this.nextPage} doPasswordReset: this.doPasswordReset
search={this.search} }}
actions={[AdminTeamMembersDropdown]} actionUserProps={actionUserProps}
actionProps={{ />
doPasswordReset: this.doPasswordReset </div>
}}
actionUserProps={actionUserProps}
/>
</div>
</form>
<ResetPasswordModal <ResetPasswordModal
user={this.state.user} user={this.state.user}
show={this.state.showPasswordModal} show={this.state.showPasswordModal}