diff --git a/CHANGELOG.md b/CHANGELOG.md index e690ae18ee..8e5e711fa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Cleanup get_report function in gsad [#1263](https://github.com/greenbone/gsa/pull/1263) ### Fixed +- Don't allow bulk tagging vulnerabilities [#1429](https://github.com/greenbone/gsa/pull/1429) - Fix "given type was invalid" error for saving filters [#1428](https://github.com/greenbone/gsa/pull/1428) - Fix parsing CVSS authentication SINGLE_INSTANCE [#1427](https://github.com/greenbone/gsa/pull/1427) - Fix loading data on login [#1426](https://github.com/greenbone/gsa/pull/1426) diff --git a/gsa/src/web/pages/vulns/listpage.js b/gsa/src/web/pages/vulns/listpage.js index 82c30ff98b..323e44698c 100644 --- a/gsa/src/web/pages/vulns/listpage.js +++ b/gsa/src/web/pages/vulns/listpage.js @@ -74,6 +74,7 @@ const Page = ({filter, onFilterChanged, onInteraction, ...props}) => ( filterEditDialog={VulnsFilterDialog} filtersFilter={VULNS_FILTER_FILTER} table={VulnsTable} + tags={false} title={_('Vulnerabilities')} sectionIcon={} toolBarIcons={ToolBarIcons}