mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 18:05:20 +00:00
Fix zero rule level on ruleset tab
This commit is contained in:
parent
f30fe4464f
commit
008ccdf3f4
@ -29,7 +29,8 @@ app.directive('wzTable',function(){
|
||||
scope.func(obj);
|
||||
}
|
||||
scope.parseItem = (item,key) => {
|
||||
let tmp = key;
|
||||
if(scope.isruleset && key.col === 'level' && item.level === 0) return '0';
|
||||
let tmp = key;
|
||||
if(key.col) {
|
||||
tmp = key.col;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user