mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-19 19:15:22 +00:00
fw_log.volt: show with 'or' and empty filter (#4716)
This commit is contained in:
parent
56f237a8d4
commit
819131b866
@ -266,7 +266,7 @@
|
||||
if (this_data === undefined) {
|
||||
return;
|
||||
}
|
||||
let is_matched = !filter_or_type;
|
||||
let is_matched = (filters.length > 0) ? !filter_or_type : true;
|
||||
for (let i=0; i < filters.length; i++) {
|
||||
let filter_value = filters[i].value.toLowerCase();
|
||||
let filter_condition = filters[i].condition;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user