mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
Fix sorting method
This commit is contained in:
parent
9173b0ee7a
commit
c39831abbc
1 changed files with 1 additions and 16 deletions
|
@ -23,22 +23,7 @@ class Clients extends Component {
|
|||
Header: 'IP',
|
||||
accessor: 'ip',
|
||||
Cell: ({ value }) => (<div className="logs__row logs__row--overflow"><span className="logs__text" title={value}>{value}</span></div>),
|
||||
sortMethod: (a, b) => {
|
||||
const nextValue = a.split('.');
|
||||
const prevValue = b.split('.');
|
||||
|
||||
for (let i = 0; i < nextValue.length; i += 1) {
|
||||
const nextNumber = parseInt(nextValue[i], 10);
|
||||
const prevNumber = parseInt(prevValue[i], 10);
|
||||
|
||||
if (nextNumber < prevNumber) {
|
||||
return -1;
|
||||
} else if (nextNumber > prevNumber) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
},
|
||||
sortMethod: (a, b) => parseInt(a.replace(/\./g, ''), 10) - parseInt(b.replace(/\./g, ''), 10),
|
||||
}, {
|
||||
Header: 'Requests count',
|
||||
accessor: 'count',
|
||||
|
|
Loading…
Reference in a new issue