- client: fix request count in clients table

This commit is contained in:
Ildar Kamalov 2019-12-10 15:22:40 +03:00
parent 40763c903b
commit 289c6f8c73
1 changed files with 5 additions and 5 deletions

View File

@ -62,10 +62,10 @@ class ClientsTable extends Component {
}; };
}; };
getStats = (ip, stats) => { getStats = (ids, stats) => {
if (stats) { if (stats) {
const statsForCurrentIP = stats.find(item => item.name === ip); const currentStats = stats.find(item => ids.includes(item.name));
return statsForCurrentIP && statsForCurrentIP.count; return currentStats && currentStats.count;
} }
return ''; return '';
@ -180,8 +180,8 @@ class ClientsTable extends Component {
accessor: 'statistics', accessor: 'statistics',
minWidth: 120, minWidth: 120,
Cell: (row) => { Cell: (row) => {
const clientIP = row.original.ip; const { ids } = row.original;
const clientStats = clientIP && this.getStats(clientIP, this.props.topClients); const clientStats = this.getStats(ids, this.props.topClients);
if (clientStats) { if (clientStats) {
return ( return (