Skip to content

Commit

Permalink
Merge pull request #5624 from flexion/10285-design-debt
Browse files Browse the repository at this point in the history
10285: Fix: Wrap text in Filings and Proceedings column in Document View
  • Loading branch information
jimlerza authored Dec 20, 2024
2 parents 49803be + 4c0d271 commit f43de33
Showing 1 changed file with 10 additions and 1 deletion.
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

0 comments on commit f43de33

Please sign in to comment.