Skip to content

Commit

Permalink
Fix reporting syscheck negative values in atrributes
Browse files Browse the repository at this point in the history
  • Loading branch information
juankaromo committed Mar 9, 2020
1 parent 6e803e6 commit 7c3e84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/controllers/wazuh-reporting.js
Expand Up @@ -2044,7 +2044,7 @@ export class WazuhReportingCtrl {
columns.forEach(y => {
if (y !== '') {
y = y !== "check_whodata" ? y : 'whodata';
row.push(x[y] ? 'yes' : 'no');
row.push(x[y] ? x[y] : 'no');
}
});
row.push(x.recursion_level);
Expand Down

0 comments on commit 7c3e84e

Please sign in to comment.