Skip to content

Commit

Permalink
fix: rss card date
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagner3UB committed Oct 11, 2023
1 parent bede043 commit b8fd3e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
- ...
-->

## Versione 7.22.2 (11/10/2023)

### Fix

- Sistemato il template degli Rss Card con immagine per mostrare la data corretta

## Versione 7.22.1 (27/09/2023)

### Migliorie
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ const CardWithImageRssTemplate = ({
<span className="mx-1">&mdash;</span>
</>
)}
<span>{getViewDate(item.pubDate, intl.locale)}</span>{' '}
<span>
{getViewDate(item.pubDate || item.date, intl.locale)}
</span>{' '}
</div>
<CardTitle className="big-heading" tag="h6">
{item.title}
Expand Down

0 comments on commit b8fd3e6

Please sign in to comment.