- client: Return red background of Disallowed clients on the Dashboard

Close #2108

* commit '9fd74748bb7ce84bea512c5a52bd927e88a00ed8':
  - client: Return red background of Disallowed clients on the Dashboard
This commit is contained in:
Artem Baskal 2020-09-18 17:44:55 +03:00
commit 3a71374f9f
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ const Clients = ({
const { ip } = rowInfo.original; const { ip } = rowInfo.original;
return getIpMatchListStatus(ip, disallowedClients) === IP_MATCH_LIST_STATUS.NOT_FOUND ? {} : { className: 'red' }; return getIpMatchListStatus(ip, disallowedClients) === IP_MATCH_LIST_STATUS.NOT_FOUND ? {} : { className: 'logs__row--red' };
}} }}
/> />
</Card>; </Card>;