Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

10285: Fix: Wrap text in Filings and Proceedings column in Document View #5624

Merged
merged 8 commits into from
Dec 20, 2024
11 changes: 10 additions & 1 deletion web-client/src/views/DocketRecord/DocumentViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,21 @@ export const DocumentViewer = connect(
<div className="grid-col-5">
<span
className={classNames(
'mobile-text-wrap',
'word-wrap-break-word',
entry.isStricken && 'stricken-docket-record',
)}
>
{entry.descriptionDisplay}
</span>
{entry.isStricken && ' (STRICKEN)'}
<span
className={classNames(
'word-wrap-break-word',
'display-block',
)}
>
{entry.isStricken && ' (STRICKEN)'}
</span>
</div>
<div className="grid-col-2 padding-left-105">
{entry.showNotServed && (
Expand Down
Loading