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.
1 parent b6b14d3 commit e6f08b4Copy full SHA for e6f08b4
components/search/testimony/TestimonyHit.tsx
@@ -111,7 +111,9 @@ const TestimonyResult = ({ hit }: { hit: Hit<Testimony> }) => {
111
<h6 style={{ color: "var(--bs-blue)", fontWeight: 600 }}>
112
{bill?.content.Title}
113
</h6>
114
- <p>"{trimContent(hit.content, 500)}"</p>
+ <p style={{ wordBreak: "break-all" }}>
115
+ "{trimContent(hit.content, 500)}"
116
+ </p>
117
<div style={{ display: "flex", justifyContent: "space-between" }}>
118
{/* {hit.content.trim().length > 0 && <a className="w-20">Read More</a>} */}
119
<span style={{ marginLeft: "auto" }}>{`Posted ${date}`}</span>
0 commit comments