Skip to content

Commit

Permalink
fix: fixed semantic headings levels in rss templates, all h3 now
Browse files Browse the repository at this point in the history
  • Loading branch information
deodorhunter committed Feb 2, 2024
1 parent 1c2e689 commit 833e43a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,23 @@
- ...
-->

## Versione x.x.x (xx/xx/xxxx)

### Novità

- Aggiunta l'icona per il formato di file CSV

### Fix

- [ Accessibilità ] Sistemato l'html semantico degli heading per i template del Blocco Listing variazione RSS, migliorata l'esperienza d'uso per gli utenti che utilizzano screen reader

## Versione 11.3.3 (30/01/2024)

### Migliorie

- Migliorato il focus sulle immagini in edit del blocco Immagine quando queste sono allineate a sinistra o a destra.

### Fix

- Sistemato il layout del blocco elenco per i Bandi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const CardWithImageRssTemplate = ({
{getViewDate(item.pubDate || item.date, intl.locale)}
</span>{' '}
</div>
<CardTitle tag="h6">{item.title}</CardTitle>
<CardTitle tag="h3">{item.title}</CardTitle>
{item?.source?.length > 0 && (
<div className="source-title">
<span className="source">{item.source}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const CardWithoutImageRssTemplate = ({
</span>
)}
</div>
<CardTitle tag="h5">{item.title}</CardTitle>
<CardTitle tag="h3">{item.title}</CardTitle>
{item?.source?.length > 0 && (
<div className="source-title">
<span className="source">{item.source}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const CardWithImageRssTemplateSkeleton = ({ isEditMode, data = {} }) => {

<CardBody tag="div" className="px-4">
<div className="category-top"></div>
<CardTitle tag="h6"></CardTitle>
<CardTitle tag="h3"></CardTitle>
</CardBody>
<CardReadMore
iconName="it-arrow-right"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const CardWithoutImageRssTemplateSkeleton = ({ isEditMode, data = {} }) => {
<Card noWrapper={false} tag="div">
<CardBody tag="div">
<div className="category-top"></div>
<CardTitle tag="h5"></CardTitle>
<CardTitle tag="h3"></CardTitle>
<CardText tag="p" className="font-serif"></CardText>
</CardBody>
<CardReadMore
Expand Down

0 comments on commit 833e43a

Please sign in to comment.