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

Adjust gmpname vulnerability and secinfo #1652

Merged
merged 2 commits into from
Oct 1, 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
[#1466](https://github.com/greenbone/gsa/pull/1466) [#1467](https://github.com/greenbone/gsa/pull/1467)

### Changed
- Change gmpname for vulnerability and secinfo pages [#1652](https://github.com/greenbone/gsa/pull/1652)
- Use "lean" reports by default when requesting a single report [#1635](https://github.com/greenbone/gsa/pull/1635)
- Use uuid to get greenbone compliance report format [#1643](https://github.com/greenbone/gsa/pull/1643)
- Add details=1 to report download command [#1642](https://github.com/greenbone/gsa/pull/1642)
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/secinfo/listpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Page.propTypes = {
onInteraction: PropTypes.func.isRequired,
};

export default withEntitiesContainer('secinfo', {
export default withEntitiesContainer('allinfo', {
entitiesSelector,
loadEntities,
})(Page);
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/vulns/listpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Page.propTypes = {
onInteraction: PropTypes.func.isRequired,
};

export default withEntitiesContainer('vuln', {
export default withEntitiesContainer('vulnerability', {
entitiesSelector,
loadEntities,
})(Page);