diff --git a/src/common/MetaRow/MetaRow.js b/src/common/MetaRow/MetaRow.js index f30ce3a8c..1e9ef9e04 100644 --- a/src/common/MetaRow/MetaRow.js +++ b/src/common/MetaRow/MetaRow.js @@ -14,7 +14,7 @@ const MetaRow = ({ className, title, message, items, itemComponent, deepLinks }) return (
{ - (typeof title === 'string' && title.length > 0) || (deepLinks && typeof deepLinks.discover === 'string') ? + (typeof title === 'string' && title.length > 0) || (deepLinks && (typeof deepLinks.discover === 'string' || typeof deepLinks.library === 'string')) ?
{ typeof title === 'string' && title.length > 0 ? @@ -23,8 +23,8 @@ const MetaRow = ({ className, title, message, items, itemComponent, deepLinks }) null } { - deepLinks && typeof deepLinks.discover === 'string' ? - @@ -72,7 +72,8 @@ MetaRow.propTypes = { })), itemComponent: PropTypes.elementType, deepLinks: PropTypes.shape({ - discover: PropTypes.string + discover: PropTypes.string, + library: PropTypes.string }) };