Skip to content

Commit

Permalink
fix: i link in modulistica devono far vedere la remoteUrl e non il li…
Browse files Browse the repository at this point in the history
…nk (v2) (#334)

* fix: i link in modulistica devono far vedere la remoteUrl e non il link

* doc: releaselog
  • Loading branch information
mamico authored Sep 19, 2023
1 parent 586d849 commit a4b8b5d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ Sistemati i colori del blocco informazioni

### 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

<!--- -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Downloads = ({ item, titleDoc }) => {
</React.Fragment>
) : (
<UniversalLink
href={flattenToAppURL(item['@id'])}
href={item.remoteUrl || flattenToAppURL(item['@id'])}
title={item.title}
className="modulistica-link"
>
Expand All @@ -59,7 +59,7 @@ const DocRow = ({ doc, items }) => {
})}
>
<div id={`title-${doc.id}`} className="title">
<UniversalLink href={flattenToAppURL(doc['@id'])}>
<UniversalLink href={doc.remoteUrl || flattenToAppURL(doc['@id'])}>
{doc.title}
</UniversalLink>
{doc?.description && (
Expand All @@ -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) && (
<div className="doc">{titleWrapper}</div>
)}

Expand Down

0 comments on commit a4b8b5d

Please sign in to comment.