* client: reload list on opening Clients settings

This commit is contained in:
Ildar Kamalov
2019-06-05 15:49:01 +03:00
parent a3b8d4d923
commit b2364e465f
3 changed files with 9 additions and 2 deletions

View File

@@ -8,6 +8,10 @@ import PageTitle from '../../ui/PageTitle';
import Loading from '../../ui/Loading';
class Clients extends Component {
componentDidMount() {
this.props.getClients();
}
render() {
const {
t,
@@ -58,6 +62,7 @@ Clients.propTypes = {
deleteClient: PropTypes.func.isRequired,
addClient: PropTypes.func.isRequired,
updateClient: PropTypes.func.isRequired,
getClients: PropTypes.func.isRequired,
topStats: PropTypes.object,
};