diff --git a/src/components/ItaliaTheme/Blocks/Listing/Commons/ListingImage.jsx b/src/components/ItaliaTheme/Blocks/Listing/Commons/ListingImage.jsx index 814434007..f8e0ecc14 100644 --- a/src/components/ItaliaTheme/Blocks/Listing/Commons/ListingImage.jsx +++ b/src/components/ItaliaTheme/Blocks/Listing/Commons/ListingImage.jsx @@ -16,9 +16,9 @@ const ListingImage = ({ const Image = config.getComponent({ name: 'Image' }).component; let commonImageProps = { item, - 'aria-hidden': true, - alt: imageProps.alt ?? '', - role: 'presentation', + 'aria-hidden': imageProps.alt || item.title ? false : true, + alt: imageProps.alt ?? item.title ?? '', + role: imageProps.alt || item.title ? '' : 'presentation', className, loading, responsive,