Fix searching by user id in system console (#6763)

Этот коммит содержится в:
Joram Wilander
2017-06-28 09:36:13 -04:00
коммит произвёл Harrison Healey
родитель 58b3231916
Коммит bc2cad397a

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

@@ -260,13 +260,7 @@ export default class SystemUsers extends React.Component {
return;
}
this.props.actions.getUser(
id,
() => {
this.setState({
loading: false
});
},
this.props.actions.getUser(id).then(
() => {
this.setState({
loading: false