We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9da11f9 + e6f08b4 commit 4bd110bCopy full SHA for 4bd110b
components/search/testimony/TestimonyHit.tsx
@@ -114,7 +114,9 @@ const TestimonyResult = ({ hit }: { hit: Hit<Testimony> }) => {
114
<h6 style={{ color: "var(--bs-blue)", fontWeight: 600 }}>
115
{bill?.content.Title}
116
</h6>
117
- <p>"{trimContent(hit.content, 500)}"</p>
+ <p style={{ wordBreak: "break-all" }}>
118
+ "{trimContent(hit.content, 500)}"
119
+ </p>
120
<div style={{ display: "flex", justifyContent: "space-between" }}>
121
{/* {hit.content.trim().length > 0 && <a className="w-20">Read More</a>} */}
122
<span style={{ marginLeft: "auto" }}>{`Posted ${date}`}</span>
0 commit comments