Fix column max width
This commit is contained in:
parent
82269bcf33
commit
c2ba8de206
@ -31,6 +31,7 @@ class BlockedDomains extends Component {
|
|||||||
}, {
|
}, {
|
||||||
Header: 'Requests count',
|
Header: 'Requests count',
|
||||||
accessor: 'domain',
|
accessor: 'domain',
|
||||||
|
maxWidth: 190,
|
||||||
Cell: ({ value }) => {
|
Cell: ({ value }) => {
|
||||||
const {
|
const {
|
||||||
blockedFiltering,
|
blockedFiltering,
|
||||||
|
@ -40,6 +40,7 @@ class QueriedDomains extends Component {
|
|||||||
}, {
|
}, {
|
||||||
Header: 'Requests count',
|
Header: 'Requests count',
|
||||||
accessor: 'count',
|
accessor: 'count',
|
||||||
|
maxWidth: 190,
|
||||||
Cell: ({ value }) => {
|
Cell: ({ value }) => {
|
||||||
const percent = getPercent(this.props.dnsQueries, value);
|
const percent = getPercent(this.props.dnsQueries, value);
|
||||||
const percentColor = this.getPercentColor(percent);
|
const percentColor = this.getPercentColor(percent);
|
||||||
|
Loading…
Reference in New Issue
Block a user