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

Add full width to document detail fields #7206

Merged
merged 2 commits into from
Dec 18, 2024
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 @@ -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
Loading