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

Change tooltip of override icon in result details #2467

Merged
merged 2 commits into from
Sep 24, 2020
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 @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Added option for "Start Task" event upon "New SecInfo arrived" condition in alerts dialog [#2418](https://github.com/greenbone/gsa/pull/2418)

### Changed
- Change tooltip of override icon in result details [#2467](https://github.com/greenbone/gsa/pull/2467)
- Changed visual appearance of compliance status bar [#2457](https://github.com/greenbone/gsa/pull/2457)
- Changed delete icons on report format detailspage and schedule detailspage to trashcan icons [#2459](https://github.com/greenbone/gsa/pull/2459)
- Use <predefined> to disable feed object editing and filter creation on feed status page [#2398](https://github.com/greenbone/gsa/pull/2398)
Expand Down
9 changes: 4 additions & 5 deletions gsa/src/web/pages/results/detailspage.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ const Details = ({entity, ...props}) => {
<SeverityBar severity={entity.severity} />
{active_overrides.length > 0 && (
<InnerLink to="overrides">
<OverrideIcon title={_('Overrides are applied')} />
<OverrideIcon
title={_('There are overrides for this result')}
/>
</InnerLink>
)}
</Divider>
Expand Down Expand Up @@ -438,10 +440,7 @@ export default compose(
entitySelector: selector,
load: loadEntity,
}),
connect(
mapStateToProps,
mapDispatchToProps,
),
connect(mapStateToProps, mapDispatchToProps),
)(Page);

// vim: set ts=2 sw=2 tw=80: