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

Fix height of Home overview cards #6510

Merged
merged 2 commits into from
Mar 15, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ All notable changes to the Wazuh app project will be documented in this file.

### Changed

- Moved the plugin menu to platform applications into the side menu [#5840](https:/wazuh/wazuh-dashboard-plugins/pull/5840) [#6226](https:/wazuh/wazuh-dashboard-plugins/pull/6226) [#6244](https:/wazuh/wazuh-dashboard-plugins/pull/6244) [#6176](https:/wazuh/wazuh-dashboard-plugins/pull/6176) [#6423](https:/wazuh/wazuh-dashboard-plugins/pull/6423)
- Moved the plugin menu to platform applications into the side menu [#5840](https:/wazuh/wazuh-dashboard-plugins/pull/5840) [#6226](https:/wazuh/wazuh-dashboard-plugins/pull/6226) [#6244](https:/wazuh/wazuh-dashboard-plugins/pull/6244) [#6176](https:/wazuh/wazuh-dashboard-plugins/pull/6176) [#6423](https:/wazuh/wazuh-dashboard-plugins/pull/6423) [#6510](https:/wazuh/wazuh-dashboard-plugins/pull/6510)
- Changed dashboards. [#6035](https:/wazuh/wazuh-dashboard-plugins/pull/6035)
- Change the display order of tabs in all modules. [#6067](https:/wazuh/wazuh-dashboard-plugins/pull/6067)
- Upgraded the `axios` dependency to `1.6.1` [#6114](https:/wazuh/wazuh-dashboard-plugins/pull/6114)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const OverviewWelcome = compose(
<EuiFlexGrid columns={2}>
{apps.map(app => (
<EuiFlexItem key={app.id}>
<RedirectAppLinks
<RedirectAppLinks className='flex-redirect-app-links'
application={getCore().application}
>
<EuiCard
Expand Down
5 changes: 5 additions & 0 deletions plugins/main/public/components/common/welcome/welcome.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@
span.statWithLink:hover {
text-decoration: underline;
}

[name="OverviewWelcome"] .flex-redirect-app-links {
display: flex;
flex-grow: 1;
}
Loading