mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Fix searching by user id in system console (#6763)
This commit is contained in:
committed by
Harrison Healey
parent
58b3231916
commit
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
|
||||
|
||||
Reference in New Issue
Block a user