diff --git a/RELEASE.md b/RELEASE.md index 37390142d..464bd6739 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -41,6 +41,12 @@ - ... --> +## Versione X.X.X (dd/mm/yyyy) + +### Novità + +- Aggiunto data-element pager-link al paginatore per il blocco Cerca per i quali viene impostata l'opzione service-link. + ## Versione 9.0.1 (03/11/2023) ### Migliorie diff --git a/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx b/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx index f0065bb67..f63b9bafc 100644 --- a/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx +++ b/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx @@ -96,7 +96,9 @@ const ListingBody = React.memo( // Need to know if data-element is "service-link" // to add data-element="pager-link" to pagination links - const isServiceLink = data.id_lighthouse === 'service-link'; + const isServiceLink = + data.id_lighthouse === 'service-link' || + variation.id_lighthouse === 'service-link'; return (