Skip to content

Commit

Permalink
fix: modulisticaview children non è un documento (non ha items)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico committed Sep 27, 2023
1 parent 8a891b9 commit f037f78
Showing 1 changed file with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ const CartellaModulisticaView = ({ content }) => {
return section['@type'] === 'Document' ? (
<div className="documents-section" key={section['@id']}>
{/* <h3>{section.title}</h3> */}

{section.blocks &&
Object.keys(section.blocks)?.length > 0 && (
<TextOrBlocks content={section} />
Expand All @@ -131,16 +130,20 @@ const CartellaModulisticaView = ({ content }) => {
</div>
</div>
{section.items.filter(filterDocumento).map((doc) => {
const items = doc.items.filter(filterItemsFN);
return (
<DocRow
doc={doc}
key={doc['@id']}
items={
items.length === 0 ? doc.items : items
} /*se items.length ===0 significa che è stato fatto il match sul titolo del documento, quindi devo mostrare tutti i suoi figli*/
/>
);
if (doc.items) {
const items = doc.items.filter(filterItemsFN);
return (
<DocRow
doc={doc}
key={doc['@id']}
items={items.length === 0 ? doc.items : items}
/*se items.length ===0 significa che è stato fatto il match sul titolo del
documento, quindi devo mostrare tutti i suoi figli*/
/>
);
} else {
return <DocRow doc={doc} key={doc['@id']} />;
}
})}
</div>
)}
Expand Down

0 comments on commit f037f78

Please sign in to comment.