Skip to content

Commit

Permalink
Add full width to document detail fields (#7206)
Browse files Browse the repository at this point in the history
* Add full width to document detail fields

* Add changelog
  • Loading branch information
asteriscos authored Dec 18, 2024
1 parent c3bd68e commit afe3aa4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ All notable changes to the Wazuh app project will be documented in this file.
### Fixed

- Fixed adding the same filter twice doesn't show it in the search bar [#7185](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7185)
- Fixed rendering of rows in CDB list table when it starts with quotes. [#7171](https://github.com/wazuh/wazuh-dashboard-plugins/issues/7171)
- Fixed rendering of rows in CDB list table when it starts with quotes [#7171](https://github.com/wazuh/wazuh-dashboard-plugins/issues/7171)
- Fixed width of long fields in the document detail flyout [#7206](https://github.com/wazuh/wazuh-dashboard-plugins/issues/7206)

## Wazuh v4.10.1 - OpenSearch Dashboards 2.16.0 - Revision 00

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@ const DocViewer = (props: tDocViewerProps) => {
*/
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{ __html: value as string }}
style={{ overflowY: 'auto', wordBreak: 'break-all' }}
style={{
overflowY: 'auto',
wordBreak: 'break-all',
width: '100%',
}}
/>
)}
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ module.exports.windowsInvalidLoginPassword = {
channel: 'Security',
keywords: '0x8010000000000000',
level: '0',
message: '',
message:
'"Network connection detected:\r\nRuleName: technique_id=T1218,technique_name=Signed Binary Proxy Execution\r\nUtcTime: 2024-12-17 18:19:07.118\r\nProcessGuid: {1d283861-07bb-6753-7500-000000001102}\r\nProcessId: 3800\r\nImage: C:\\Windows\\System32\\svchost.exe\r\nUser: NT AUTHORITY\\NETWORK SERVICE\r\nProtocol: tcp\r\nInitiated: false\r\nSourceIsIpv6: false\r\nSourceIp: 45.131.195.204\r\nSourceHostname: -\r\nSourcePort: 49057\r\nSourcePortName: -\r\nDestinationIsIpv6: false\r\nDestinationIp: 10.0.1.38\r\nDestinationHostname: us-west-1.compute.internal\r\nDestinationPort: 3389\r\nDestinationPortName: ms-server"',
opcode: '0',
providerGuid: '{54849625-5478-4994-a5ba-3e3b0328c30d}',
providerName: 'Microsoft-Windows-Security-Auditing',
Expand Down

0 comments on commit afe3aa4

Please sign in to comment.