Skip to content

Commit

Permalink
Merge pull request #1393 from bjoernricks/gsa-8.0
Browse files Browse the repository at this point in the history
Fix showing the observer group name
  • Loading branch information
bjoernricks committed May 13, 2019
2 parents 4a54618 + f5bdda6 commit c1b4f99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit c1b4f99

Please sign in to comment.