Skip to content

Commit

Permalink
fix: fix rsss CardWithImageTemplate view date
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliaghisini committed Sep 26, 2023
1 parent b1266b2 commit d509471
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
### Fix

- Sistemato margine del blocco Alert quando allineato a sinistra
- Sistemato il template degli Rss Card con immagine per mostrare la data corretta

## Versione 8.7.0 (20/09/2023)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,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 tag="h6">{item.title}</CardTitle>
</CardBody>
Expand Down

0 comments on commit d509471

Please sign in to comment.