refactor: Format value requests_count on client table
This commit is contained in:
@@ -12,7 +12,7 @@ import ReactTable from 'react-table';
|
|||||||
import { getAllBlockedServices, getBlockedServices } from '../../../../actions/services';
|
import { getAllBlockedServices, getBlockedServices } from '../../../../actions/services';
|
||||||
|
|
||||||
import { initSettings } from '../../../../actions';
|
import { initSettings } from '../../../../actions';
|
||||||
import { splitByNewLine, countClientsStatistics, sortIp, getService } from '../../../../helpers/helpers';
|
import { splitByNewLine, countClientsStatistics, sortIp, getService, formatNumber } from '../../../../helpers/helpers';
|
||||||
import { MODAL_TYPE, LOCAL_TIMEZONE_VALUE, TABLES_MIN_ROWS } from '../../../../helpers/constants';
|
import { MODAL_TYPE, LOCAL_TIMEZONE_VALUE, TABLES_MIN_ROWS } from '../../../../helpers/constants';
|
||||||
|
|
||||||
import Card from '../../../ui/Card';
|
import Card from '../../../ui/Card';
|
||||||
@@ -300,12 +300,12 @@ const ClientsTable = ({
|
|||||||
sortMethod: (a: any, b: any) => b - a,
|
sortMethod: (a: any, b: any) => b - a,
|
||||||
minWidth: 120,
|
minWidth: 120,
|
||||||
Cell: (row: any) => {
|
Cell: (row: any) => {
|
||||||
const content = CellWrap(row);
|
let content = CellWrap(row);
|
||||||
|
|
||||||
if (!row.value) {
|
if (!row.value) {
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
content = typeof content === "number" ? formatNumber(content) : content;
|
||||||
return <LogsSearchLink search={row.original.name}>{content}</LogsSearchLink>;
|
return <LogsSearchLink search={row.original.name}>{content}</LogsSearchLink>;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user