Skip to content

Commit

Permalink
Merge branch 'gsa-9.0' into ReportDetailsHostsTabCounts
Browse files Browse the repository at this point in the history
  • Loading branch information
swaterkamp authored Mar 9, 2020
2 parents 4a2989b + 38d69e1 commit 4d8772d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Lower memory usage when getting a report [#1857](https://github.com/greenbone/gvmd/pull/1857)

### Fixed
- Fixed usage of report format %F in generateFilename() [#2021](https://github.com/greenbone/gsa/pull/2021)
- Fixed report DetailsContent counts in tabs [#2004](https://github.com/greenbone/gsa/pull/2004) [#2023](https://github.com/greenbone/gsa/pull/2023)
- Fixed auto_delete_value of 0 for tasks and audits [#1987](https://github.com/greenbone/gsa/pull/1987)
- Fixed bulk tagging by user selection (send IDs as array) [#1985](https://github.com/greenbone/gsa/pull/1985)
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/reports/deltadetailspage.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ class DeltaReportDetails extends React.Component {
fileNameFormat: reportExportFileName,
id: entity.id,
modificationTime: entity.modificationTime,
reportFormat: report_format,
reportFormat: report_format.name,
resourceName: entity.task.name,
resourceType: 'report',
username,
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/reports/detailspage.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ class ReportDetails extends React.Component {
fileNameFormat: reportExportFileName,
id: entity.id,
modificationTime: entity.modificationTime,
reportFormat: report_format,
reportFormat: report_format.name,
resourceName: entity.task.name,
resourceType: 'report',
username,
Expand Down

0 comments on commit 4d8772d

Please sign in to comment.