8000 Don't collapse PBA table in security report on data change by shreyamalviya · Pull Request #1453 · guardicore/monkey · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Don't collapse PBA table in security report on data change #1453

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

Merged
merged 2 commits into from
Sep 7, 2021
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
- Malfunctioning timestomping PBA. #1405
- Malfunctioning shell startup script PBA. #1419
- Trap command produced no output. #1406
- Overlapping Guardicore logo in the landing page #1441
- Overlapping Guardicore logo in the landing page. #1441
- PBA table collapse in security report on data change. #1423

### Security
- Generate a random password when creating a new user for CommunicateAsNewUser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ class PostBreachComponent extends React.Component {
SubComponent={row => {
return renderDetails(row.original.pba_results);
}}
collapseOnDataChange={false}
/>
</div>
</>
Expand Down
0