Skip to content

Commit

Permalink
- client: Return red background of Disallowed clients on the Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemBaskal committed Sep 18, 2020
1 parent f694a40 commit 9fd7474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Dashboard/Clients.js
Expand Up @@ -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>;
Expand Down

0 comments on commit 9fd7474

Please sign in to comment.