Merge branch 'master' into feature/qlog_file

This commit is contained in:
Andrey Meshkov 2020-02-18 13:03:21 +03:00
commit 34e1147de3
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export const toggleClientBlock = (type, ip) => async (dispatch) => {
const {
allowed_clients, disallowed_clients, blocked_hosts,
} = await apiClient.getAccessList();
let updatedDisallowedClients = disallowed_clients;
let updatedDisallowedClients = disallowed_clients || [];
if (type === ACTION.unblock && updatedDisallowedClients.includes(ip)) {
updatedDisallowedClients = updatedDisallowedClients.filter(client => client !== ip);