mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 02:15:24 +00:00
Small fix for Ruleset List view filters
This commit is contained in:
parent
f32ea86f23
commit
a1a3400455
@ -45,7 +45,7 @@ app.factory('DataHandler', function ($q, apiReq,errorHandler) {
|
||||
return Promise.resolve(true);
|
||||
}
|
||||
const deferred = $q.defer();
|
||||
|
||||
|
||||
this.busy = true;
|
||||
let requestData;
|
||||
|
||||
@ -153,8 +153,11 @@ app.factory('DataHandler', function ($q, apiReq,errorHandler) {
|
||||
}
|
||||
|
||||
removeAllFilters () {
|
||||
this.filters = [];
|
||||
return this.search();
|
||||
for (let filter of this.filters) {
|
||||
this.removeFilter(filter.name, true);
|
||||
}
|
||||
// this.filters = [];
|
||||
// return this.search();
|
||||
}
|
||||
|
||||
delete (name, index) {
|
||||
|
Loading…
Reference in New Issue
Block a user