diff --git a/src/ui/app/AppContainer.js b/src/ui/app/AppContainer.js index ccd69be40..0f56667dc 100644 --- a/src/ui/app/AppContainer.js +++ b/src/ui/app/AppContainer.js @@ -9,6 +9,7 @@ import { getUsername } from '@entando/apimanager'; import App from 'ui/app/App'; import { fetchCurrentTenant } from 'state/multi-tenancy/actions'; import { fetchCurrentSystemConfiguration } from 'state/current-system-configuration/actions'; +import { fetchSystemReport } from 'state/system/actions'; export const mapStateToProps = (state, { location: { pathname } }) => ({ username: getUsername(state), @@ -19,6 +20,7 @@ export const mapStateToProps = (state, { location: { pathname } }) => ({ export const mapDispatchToProps = dispatch => ({ fetchPlugins: () => dispatch(fetchPlugins()), fetchCurrentSystemConfiguration: () => dispatch(fetchCurrentSystemConfiguration()), + fetchSystemReport: () => dispatch(fetchSystemReport()), fetchUserPreferences: (username) => { dispatch(clearAppTourProgress()); dispatch(fetchUserPreferences(username)); diff --git a/src/ui/internal-page/VerticalMenuContainer.js b/src/ui/internal-page/VerticalMenuContainer.js index 311cb5cc1..2097f38dd 100644 --- a/src/ui/internal-page/VerticalMenuContainer.js +++ b/src/ui/internal-page/VerticalMenuContainer.js @@ -438,32 +438,41 @@ const EntandoMenu = ({ }; const MfeMenuContainer = ({ - menuId, headerId, onStartTutorial, appTourLastStep, -}) => ( -