Skip to content

Commit

Permalink
Merge pull request #1959 from sarahd93/host_identifiers_gsa8
Browse files Browse the repository at this point in the history
fix missing delete button for host identifiers
  • Loading branch information
swaterkamp authored Feb 4, 2020
2 parents e6c8684 + b0a18be commit 2533f09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Lower memory usage when getting a report [#1858](https://github.com/greenbone/gvmd/pull/1858)

### Fixed
- Fixed missing delete button for host identifiers [#1959](https://github.com/greenbone/gsa/pull/1959)
- Fixed sorting columns with empty string values [#1936](https://github.com/greenbone/gsa/pull/1936)
- Fixed broken entity links for reportformat, scanconfig and portlist [#1934](https://github.com/greenbone/gsa/pull/1934)
- Fixed removing levels filter keyword if all severity levels are unchecked [#1869](https://github.com/greenbone/gsa/pull/1869)
Expand Down
6 changes: 4 additions & 2 deletions gsa/src/web/pages/hosts/detailspage.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ const Page = ({
onHostDeleteClick={delete_func}
onHostDownloadClick={download}
onHostEditClick={edit}
onHostIdentifierDeleteClick={deleteidentifier}
>
{({activeTab = 0, onActivateTab}) => {
return (
Expand All @@ -319,7 +318,10 @@ const Page = ({
<Tabs active={activeTab}>
<TabPanels>
<TabPanel>
<Details entity={entity} />
<Details
entity={entity}
onHostIdentifierDeleteClick={deleteidentifier}
/>
</TabPanel>
<TabPanel>
<EntityTags
Expand Down

0 comments on commit 2533f09

Please sign in to comment.