mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
fix report filter script
This commit is contained in:
parent
09c34d8500
commit
d0b4fd8bd1
2 changed files with 4 additions and 4 deletions
|
|
@ -85,7 +85,7 @@ class Filter {
|
|||
} catch (err) {}
|
||||
});
|
||||
// REASON HANDLER
|
||||
+this.container.addEventListener("click", (e) => {
|
||||
this.container.addEventListener("click", (e) => {
|
||||
try {
|
||||
if (
|
||||
e.target
|
||||
|
|
@ -140,7 +140,7 @@ class Filter {
|
|||
}
|
||||
}
|
||||
|
||||
setFilterMethod(requests) {
|
||||
setFilterCountry(requests) {
|
||||
if (this.countryValue === "all") return;
|
||||
for (let i = 0; i < requests.length; i++) {
|
||||
const el = requests[i];
|
||||
|
|
|
|||
4
src/ui/templates/reports.html
vendored
4
src/ui/templates/reports.html
vendored
|
|
@ -71,8 +71,8 @@
|
|||
},
|
||||
{
|
||||
"type": "select",
|
||||
"name": "Methods",
|
||||
"id": "methods",
|
||||
"name": "Method",
|
||||
"id": "method",
|
||||
"value": "all",
|
||||
"values": methods
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue