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

This commit is contained in:
ArtemBaskal 2020-09-18 17:11:46 +03:00
parent f694a40c57
commit 9fd74748bb

View file

@ -140,7 +140,7 @@ const Clients = ({
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>;