Skip to content

Commit

Permalink
Fix GitHub office365 panel information tab (#5167)
Browse files Browse the repository at this point in the history
* Remove overlay custom styles and close button

* Add changelog
  • Loading branch information
asteriscos authored Jan 26, 2023
1 parent c540580 commit a6018d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed mispelling in the NIST module [#5107](https://github.com/wazuh/wazuh-kibana-app/pull/5107)
- Fixed Statistic cronjob bulk document insert [#5150](https://github.com/wazuh/wazuh-kibana-app/pull/5150)
- Fixed the style of the buttons showing more event information in the event view table. [#5137](https://github.com/wazuh/wazuh-kibana-app/pull/5137)
- Fixed the module information button in Office365 and Github Panel tab to open the nav drawer. [#5167](https://github.com/wazuh/wazuh-kibana-app/pull/5167)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export const ModuleSidePanel = ({ navIsDocked = false, children, ...props }) =>
<EuiCollapsibleNav
isOpen={navIsOpen}
isDocked={navIsDocked}
showCloseButton={true}
maskProps={{ headerZindexLocation: 'below', className: 'wz-no-display' }}
ownFocus={false}
closeButtonPosition={'inside'}
button={
<EuiButtonEmpty
className={'sidepanel-infoBtnStyle'}
Expand All @@ -34,11 +34,6 @@ export const ModuleSidePanel = ({ navIsDocked = false, children, ...props }) =>
onClose={() => setNavIsOpen(false)}
>
<div>
<EuiButtonEmpty
style={{ position: 'absolute', right: 0 }}
onClick={() => setNavIsOpen(!navIsOpen)}
iconType={'cross'}
/>
<div className={'wz-padding-16'}>{children}</div>
</div>
</EuiCollapsibleNav>
Expand Down

0 comments on commit a6018d8

Please sign in to comment.