function unblock_link()

in webui/js/blocky4.js [94:101]


function unblock_link(entry, allowlist=false) {
    let link = _a(allowlist ? 'Remove' : 'Unblock');
    let _entry = entry;
    link.setAttribute("href", 'javascript:void(0);');
    if (allowlist === true) { link.addEventListener('click', () => remove_allow(_entry)); }
    else {link.addEventListener('click', () => unblock_ip(_entry));}
    return link;
}