Skip to content

Commit

Permalink
Merge pull request #1567 from swaterkamp/CPEtableTitle
Browse files Browse the repository at this point in the history
Fix table column title for Operating Systems table of Reports
  • Loading branch information
bjoernricks authored Aug 13, 2019
2 parents 33e185d + e7fb2ce commit 89e1b8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [8.0.2] - unreleased

### Added
- Added success dialog to report formats listpage [#1566](https://github.com/greenbone/gsa/pull/1566)
- Added an explicit get_capabilities command to gsad [#1538](https://github.com/greenbone/gsa/pull/1538)
- Highlight result diffs at delta reports [#1513](https://github.com/greenbone/gsa/pull/1513)
- Added HorizontalSep component for horizontal lists
Expand All @@ -21,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
logged in [#1508](https://github.com/greenbone/gsa/pull/1508)

### Fixed
- Fix title in Operating Systems table of Reports [#1567](https://github.com/greenbone/gsa/pull/1567)
- Fix displaying only usable report formats at report download [#1565](https://github.com/greenbone/gsa/pull/1565)
- Fix handling schedule_periods ("once" option) in TaskDialog [#1563](https://github.com/greenbone/gsa/pull/1563)
- Fix showing inactive VerifyIcon at ReportFormats detailspage [#1554](https://github.com/greenbone/gsa/pull/1554)
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/reports/operatingsystemstable.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Header = ({currentSortDir, currentSortBy, sort = true, onSortChange}) => (
currentSortBy={currentSortBy}
sortBy={sort ? 'cpe' : false}
onSortChange={onSortChange}
title={_('Hostname')}
title={_('CPE')}
/>
<TableHead
currentSortDir={currentSortDir}
Expand Down

0 comments on commit 89e1b8a

Please sign in to comment.