Skip to content

Commit

Permalink
fix: ParentSiteMenu now draws only Visible site menu elements in subs…
Browse files Browse the repository at this point in the history
…ites (#403)
  • Loading branch information
deodorhunter authored Nov 14, 2023
1 parent 68c3ca5 commit 9fc0a24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@

- Aggiunta la possibilità di selezionare la dimensione dell'immagine nel blocco Alert, inoltre è stato aggiornato anche il widget per la selezione del colore di sfondo.

### Fix

- Sistemato un bug nell'header dei sottositi che mostrava le voci del menu del sito padre anche se queste erano indicate come non visibili nella configurazione del menu.

## Versione 10.3.0 (08/11/2023)

### Fix
Expand Down
3 changes: 2 additions & 1 deletion src/components/ItaliaTheme/Header/ParentSiteMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ const ParentSiteMenu = () => {
// eslint-disable-next-line no-loop-func
dropdownMenu.forEach((m) => {
if (m.rootPath === s) {
menu = m;
// Filter non visible dropdown menu entries
menu = { ...m, items: m.items.filter((mi) => mi.visible) };
i = 0;
}
});
Expand Down

0 comments on commit 9fc0a24

Please sign in to comment.