diff --git a/RELEASE.md b/RELEASE.md index 417445766..09ee0b6ff 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -34,7 +34,12 @@ ### Migliorie -Aggiunto limite di caratteri agli input della descrizione +- Aggiunto limite di caratteri agli input della descrizione + +### Fix + +- Sistemato il problema per cui nell'area modulistica eventuali link che puntano + a file non aprivano il file ma una pagina bianca del sito diff --git a/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx b/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx index 9f65725c3..569b900de 100644 --- a/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx +++ b/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx @@ -34,7 +34,7 @@ const Downloads = ({ item, titleDoc }) => { ) : ( @@ -59,7 +59,7 @@ const DocRow = ({ doc, items }) => { })} >
- + {doc.title} {doc?.description && ( @@ -77,7 +77,7 @@ const DocRow = ({ doc, items }) => { key={doc['@id']} > {/*Only title and/or description, no files */} - {(!items || items.length == 0) && ( + {(!items || items.length === 0) && (
{titleWrapper}
)}