Skip to content

Commit

Permalink
Merge branch 'staging' into 10489-story-staging
Browse files Browse the repository at this point in the history
  • Loading branch information
TomElliottFlexion authored Dec 20, 2024
2 parents 4fe6b78 + f43de33 commit 858b537
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 858b537

Please sign in to comment.