From 834e3ed00da95a81de642362f4e01acfd171c331 Mon Sep 17 00:00:00 2001 From: Federico Rodriguez Date: Fri, 27 Jan 2023 16:45:00 +0100 Subject: [PATCH 1/3] Remove flex class --- public/controllers/agent/components/agents-table.js | 2 +- public/styles/common.scss | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/public/controllers/agent/components/agents-table.js b/public/controllers/agent/components/agents-table.js index 55ce4d48d9..5cb3a9c52c 100644 --- a/public/controllers/agent/components/agents-table.js +++ b/public/controllers/agent/components/agents-table.js @@ -305,7 +305,7 @@ export const AgentsTable = withErrorBoundary( actionButtonsRender(agent) { return ( -
+
{ diff --git a/public/styles/common.scss b/public/styles/common.scss index 36d52a88e5..6d171f0454 100644 --- a/public/styles/common.scss +++ b/public/styles/common.scss @@ -1615,11 +1615,6 @@ div.euiPopover__panel.euiPopover__panel-isOpen.euiPopover__panel--bottom.wz-menu padding-left: 320px; } -.icon-box-action { - display: flex; - flex-wrap: wrap; -} - @media only screen and (max-width: 1200px) { .hide-agent-status { display: none; From 79f9e1d58dc257433e489859952d1f5213915990 Mon Sep 17 00:00:00 2001 From: Federico Rodriguez Date: Fri, 27 Jan 2023 16:54:48 +0100 Subject: [PATCH 2/3] Add changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ce24a04b..24d1687a98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to the Wazuh app project will be documented in this file. ### Added - Added the option to sort by the agents count in the group table. [#4323](https://github.com/wazuh/wazuh-kibana-app/pull/4323) -- Added agent synchronization status in the agent module. [#3874](https://github.com/wazuh/wazuh-kibana-app/pull/3874) [#5143](https://github.com/wazuh/wazuh-kibana-app/pull/5143) +- Added agent synchronization status in the agent module. [#3874](https://github.com/wazuh/wazuh-kibana-app/pull/3874) [#5143](https://github.com/wazuh/wazuh-kibana-app/pull/5143) [#5177](https://github.com/wazuh/wazuh-kibana-app/pull/5177) - The input name was added and when the user adds a value the variable WAZUH_AGENT_NAME with its value appears in the installation command. [#4739](https://github.com/wazuh/wazuh-kibana-app/pull/4739) - Redesign the SCA table from agent's dashboard [#4512](https://github.com/wazuh/wazuh-kibana-app/pull/4512) - Enhanced the plugin setting description displayed in the UI and the configuration file. [#4501](https://github.com/wazuh/wazuh-kibana-app/pull/4501) From d33c664bd116b4b257b751eccad6b081c418b755 Mon Sep 17 00:00:00 2001 From: Federico Rodriguez Date: Fri, 27 Jan 2023 17:44:39 +0100 Subject: [PATCH 3/3] Fix table action buttons flex style --- public/controllers/agent/components/agents-table.js | 2 +- public/styles/common.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/public/controllers/agent/components/agents-table.js b/public/controllers/agent/components/agents-table.js index 5cb3a9c52c..55ce4d48d9 100644 --- a/public/controllers/agent/components/agents-table.js +++ b/public/controllers/agent/components/agents-table.js @@ -305,7 +305,7 @@ export const AgentsTable = withErrorBoundary( actionButtonsRender(agent) { return ( -
+
{ diff --git a/public/styles/common.scss b/public/styles/common.scss index 6d171f0454..0a566d1895 100644 --- a/public/styles/common.scss +++ b/public/styles/common.scss @@ -1615,6 +1615,10 @@ div.euiPopover__panel.euiPopover__panel-isOpen.euiPopover__panel--bottom.wz-menu padding-left: 320px; } +.icon-box-action { + display: flex; +} + @media only screen and (max-width: 1200px) { .hide-agent-status { display: none;