From 9fd74748bb7ce84bea512c5a52bd927e88a00ed8 Mon Sep 17 00:00:00 2001 From: ArtemBaskal Date: Fri, 18 Sep 2020 17:11:46 +0300 Subject: [PATCH] - client: Return red background of Disallowed clients on the Dashboard --- client/src/components/Dashboard/Clients.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Dashboard/Clients.js b/client/src/components/Dashboard/Clients.js index 3c163035..2f25bda3 100644 --- a/client/src/components/Dashboard/Clients.js +++ b/client/src/components/Dashboard/Clients.js @@ -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' }; }} /> ;