Skip to content

Commit

Permalink
fix: div moved inside the condition and release.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagner3UB committed Nov 2, 2023
1 parent 18e3c6d commit 12a9153
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@

- Aggiornata nuova icona di Twitter

### Fix

- Aggiunto titolo della sorgente per i singoli card - feed RSS

## Versione 7.22.2 (11/10/2023)

### Fix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ const CardWithImageRssTemplate = ({
<CardTitle className="big-heading" tag="h6">
{item.title}
</CardTitle>
<div className="source-title">
{item?.source?.length > 0 && (
{item?.source?.length > 0 && (
<div className="source-title">
<span className="source">{item.source}</span>
)}
</div>
</div>
)}
</CardBody>
<CardReadMore
iconName="it-arrow-right"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ const CardWithoutImageRssTemplate = ({
<CardTitle className="big-heading" tag="h5">
{item.title}
</CardTitle>
<div className="source-title">
{item?.source?.length > 0 && (
{item?.source?.length > 0 && (
<div className="source-title">
<span className="source">{item.source}</span>
)}
</div>
</div>
)}
<CardText tag="p" className="text-serif">
{item.contentSnippet}
</CardText>
Expand Down

0 comments on commit 12a9153

Please sign in to comment.