* client: remove /clients and /stats_top request from global requests

This commit is contained in:
Ildar Kamalov
2019-07-08 12:49:03 +03:00
parent fce551dcaf
commit 2520a62e24
5 changed files with 8 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ class Logs extends Component {
componentDidMount() {
this.getLogs();
this.props.getFilteringStatus();
this.props.getClients();
}
componentDidUpdate(prevProps) {
@@ -356,6 +357,7 @@ Logs.propTypes = {
processingRules: PropTypes.bool,
logStatusProcessing: PropTypes.bool,
t: PropTypes.func,
getClients: PropTypes.func.isRequired,
};
export default withNamespaces()(Logs);