Fix column max width

This commit is contained in:
Ildar Kamalov 2018-10-15 14:57:36 +03:00
parent 82269bcf33
commit c2ba8de206
2 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ class BlockedDomains extends Component {
}, {
Header: 'Requests count',
accessor: 'domain',
maxWidth: 190,
Cell: ({ value }) => {
const {
blockedFiltering,

View File

@ -40,6 +40,7 @@ class QueriedDomains extends Component {
}, {
Header: 'Requests count',
accessor: 'count',
maxWidth: 190,
Cell: ({ value }) => {
const percent = getPercent(this.props.dnsQueries, value);
const percentColor = this.getPercentColor(percent);