()
| 12150 | btn.classList.toggle('text-white', isActive); |
| 12151 | btn.classList.toggle('text-gray-400', !isActive); |
| 12152 | btn.classList.toggle('hover:text-white', !isActive); |
| 12153 | }); |
| 12154 | if (attackLogsCache) displayAttackLogs(attackLogsCache); |
| 12155 | } |
| 12156 | |
| 12157 | function filterAttackByNetwork(network) { |
| 12158 | currentAttackNetworkFilter = network; |
| 12159 | if (attackLogsCache) displayAttackLogs(attackLogsCache); |
| 12160 | } |
| 12161 | |
| 12162 | function onAttackIPSearch(value) { |
| 12163 | currentAttackIPSearch = value.trim().toLowerCase(); |
| 12164 | if (attackLogsCache) displayAttackLogs(attackLogsCache); |
| 12165 | } |
no test coverage detected