Skip to content

Commit

Permalink
Merge branch 'fix_view_luoghi' into 12.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliaghisini committed Apr 11, 2024
2 parents 94d3c56 + 28e1ed8 commit f0cf39a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/ItaliaTheme/View/EventoView/EventoLuoghi.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ const EventoLuoghi = ({ content }) => {
const intl = useIntl();

return content?.luoghi_correlati?.length > 0 ||
content?.nome_sede > 0 ||
content?.street > 0 ||
content?.nome_sede?.length > 0 ||
content?.street?.length > 0 ||
(content?.geolocation?.latitude && content?.geolocation?.longitude) ||
content?.zip_code ||
content?.city ||
content?.quartiere ||
content?.circoscrizione ||
content?.country ? (
content?.zip_code?.length > 0 ||
content?.city?.length > 0 ||
content?.quartiere?.length > 0 ||
content?.circoscrizione?.length > 0 ||
content?.country?.length > 0 ? (
<RichTextSection
tag_id="luoghi"
title={intl.formatMessage(messages.luoghi)}
Expand Down

0 comments on commit f0cf39a

Please sign in to comment.