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 showing the observer group name #1393

Merged
merged 2 commits into from
May 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,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
- Fix displaying the observer group name at tasks list page [#1393](https://github.com/greenbone/gsa/pull/1393)
- Improve EditScanConfigDialog performance (delete styles from svg-Icons) [#1388](https://github.com/greenbone/gsa/pull/1388)
- Fix race condition in EditUserSettingsDialog and loading all default filters [#1383](https://github.com/greenbone/gsa/pull/1383)
- Fix scheduled task tooltip time format [#1382](https://github.com/greenbone/gsa/pull/1382)
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/tasks/row.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const Row = ({
obs.push(_('Role {{name}}', {name: observers.role.name}));
}
if (isDefined(observers.group)) {
obs.push(_('Group {{name}}', {name: observers.role.name}));
obs.push(_('Group {{name}}', {name: observers.group.name}));
}
}
}
Expand Down