Skip to content
Snippets Groups Projects
Commit 95172604 authored by Administrator's avatar Administrator
Browse files

Merge branch 'filter-fix-quick' into 'development'

Partial fix for the js request filter

See merge request !132
parents 47f5be80 a73e9dc4
Branches
No related tags found
2 merge requests!183Use Real IPs instead of Proxy IP for Sentry (#250),!132Partial fix for the js request filter
...@@ -90,7 +90,7 @@ function inFilter(requestInfo) { ...@@ -90,7 +90,7 @@ function inFilter(requestInfo) {
} }
var selectedType = $("#requestTypeSelect").find(":selected").text(); var selectedType = $("#requestTypeSelect").find(":selected").text();
if (selectedType) { if (selectedType) {
if (!selectedStatus.includes(requestInfo.type)) { if (!selectedType.includes(requestInfo.type)) {
return false; return false;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment