diff --git a/RELEASE.md b/RELEASE.md index 2910a1803..abc2aa47c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -35,6 +35,7 @@ ### Fix - Uniformato e impostato a sinistra l'allineamento del testo nel blocco Elenco nella variazione Quadratoni con immagine +- Non mostrare la fascia colorata del footer di un sottosito quando questo non รจ compilato ## Versione 8.7.3 (26/09/2023) diff --git a/src/components/ItaliaTheme/Footer/SubsiteFooter.jsx b/src/components/ItaliaTheme/Footer/SubsiteFooter.jsx index 90fd05b9f..6b289eeea 100644 --- a/src/components/ItaliaTheme/Footer/SubsiteFooter.jsx +++ b/src/components/ItaliaTheme/Footer/SubsiteFooter.jsx @@ -7,13 +7,13 @@ import React from 'react'; import { useSelector } from 'react-redux'; import { useLocation } from 'react-router-dom'; import { flattenHTMLToAppURL, isCmsUi } from '@plone/volto/helpers'; +import { richTextHasContent } from 'design-comuni-plone-theme/components/ItaliaTheme/View'; const SubsiteFooter = () => { const location = useLocation(); const isCmsUI = isCmsUi(location.pathname); const subsite = useSelector((state) => state.subsite?.data); - - return subsite?.subsite_footer?.data ? ( + return richTextHasContent(subsite?.subsite_footer) ? (