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 (#336)

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

* Update RELEASE.md
  • Loading branch information
mamico authored Sep 20, 2023
1 parent a14a178 commit a311095
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@
- ...
-->

## Versione X.X.X
## Versione X.X.X (dd/mm/yyyy)

### Fix

- sistemati gli oggetti link che puntano a file nella Cartella Modulistica

- Sistemato l'allineamento degli elementi nel blocco Contatti: se ci sono meno di tre elementi l'allineamento è centrato, se ce ne sono più di 3 l'allineamento è a sinistra.
- Migliorata accessibilità del calendario nel blocco ricerca Eventi e ricerca Bandi
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 }) => {
})}
>
<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 Down

0 comments on commit a311095

Please sign in to comment.