Skip to content

Commit

Permalink
Normalize the field whodata in the group reporting (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsanchez91 authored and juankaromo committed Nov 27, 2019
1 parent 06471ca commit a36e356
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/controllers/wazuh-reporting.js
Original file line number Diff line number Diff line change
Expand Up @@ -2045,6 +2045,7 @@ export class WazuhReportingCtrl {
row.push(x.path);
columns.forEach(y => {
if (y !== '') {
y = y !== "check_whodata" ? y : 'whodata';
row.push(x[y] ? 'yes' : 'no');
}
});
Expand Down

0 comments on commit a36e356

Please sign in to comment.