Skip to content

Commit

Permalink
fix(card): show friendly type name instead of portal_type id
Browse files Browse the repository at this point in the history
  • Loading branch information
ichim-david committed Nov 9, 2022
1 parent 9a35e66 commit ea477fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UniversalCard/fragments/CardMeta.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CardMeta = (props) => {
return show ? (
<UiCard.Meta>
{showMeta && (
<span className="text-left">{head_title || item['@type']}</span>
<span className="text-left">{head_title || item['Type']}</span>
)}
{showDate && (
<span className="text-right date">
Expand Down

0 comments on commit ea477fe

Please sign in to comment.