diff --git a/searchlib/components/Result/ContentClusters.jsx b/searchlib/components/Result/ContentClusters.jsx index 010401498..e033b7773 100644 --- a/searchlib/components/Result/ContentClusters.jsx +++ b/searchlib/components/Result/ContentClusters.jsx @@ -46,8 +46,12 @@ const ContentClusters = ({ clusters, item }) => { )} {index < Object.keys(displayClusters).length - 1 ? ', ' : ''} - {formats_to_show.map((format_to_show) => { - return {format_to_show}; + {formats_to_show.map((format_to_show, i) => { + return ( + + {format_to_show} + + ); })}