fix: remove truncation for title in search result blocks; refs #180
This commit is contained in:
parent
681ceea70d
commit
29b968863c
|
@ -39,8 +39,7 @@ const ContentBlockFooter = ({
|
|||
component="h4"
|
||||
genericFontFamily="serif"
|
||||
>
|
||||
{title.slice(0, Math.min(60, title.length))}
|
||||
{title.length > 60 ? '...' : ''}
|
||||
{title}
|
||||
</Typography>
|
||||
</Link>
|
||||
</PostTitle>
|
||||
|
|
Loading…
Reference in New Issue