mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
- client: Return red background of Disallowed clients on the Dashboard
This commit is contained in:
parent
f694a40c57
commit
9fd74748bb
1 changed files with 1 additions and 1 deletions
|
@ -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>;
|
||||
|
|
Loading…
Reference in a new issue