Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table column title for Operating Systems table of Reports #1567

Merged
merged 2 commits into from
Aug 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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