Skip to content

Commit

Permalink
Merge pull request #2817 from wazuh/fix/4.0-7.10-add-agent-id-report-…
Browse files Browse the repository at this point in the history
…name

4.0-7.10 - Add agent id to the reports name in Agent Inventory and Modules
  • Loading branch information
frankeros authored Jan 27, 2021
2 parents e1648d9 + b6e37e8 commit f0725d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/react-services/reporting.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class ReportingService {

const array = await this.vis2png.checkArray(idArray);
const name = `wazuh-${
agents ? 'agents' : 'overview'
agents ? `agent-${agents}` : 'overview'
}-${tab}-${(Date.now() / 1000) | 0}.pdf`;

const browserTimezone = moment.tz.guess(true);
Expand Down

0 comments on commit f0725d9

Please sign in to comment.