Skip to content

Commit

Permalink
fix: updated tipologia_bando data in Bando listing template (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraBianchi authored Nov 8, 2023
1 parent 4f0f775 commit 6f38934
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,13 @@ const BandiInEvidenceTemplate = ({
)}

{/* Tipologia */}

{show_tipologia && item.tipologia_bando?.title?.length > 0 && (
{show_tipologia && item?.tipologia_bando && (
<span className="d-flex flex-wrap align-items-baseline bando-dati-info">
<div className="bando-dati-label me-2">
{intl.formatMessage(messages.tipologia)}:
</div>
<span className="bando-dati-date">
{item.tipologia_bando?.title}
{item.tipologia_bando}
</span>
</span>
)}
Expand Down

0 comments on commit 6f38934

Please sign in to comment.