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"
|
component="h4"
|
||||||
genericFontFamily="serif"
|
genericFontFamily="serif"
|
||||||
>
|
>
|
||||||
{title.slice(0, Math.min(60, title.length))}
|
{title}
|
||||||
{title.length > 60 ? '...' : ''}
|
|
||||||
</Typography>
|
</Typography>
|
||||||
</Link>
|
</Link>
|
||||||
</PostTitle>
|
</PostTitle>
|
||||||
|
|
Loading…
Reference in New Issue