Skip to content

Commit

Permalink
refactor: improve presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierJp committed Jun 27, 2024
1 parent 84aac9d commit c9edf83
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,13 @@ function ActesTable({ actes }: IActesTableProps) {
<ul>
{(a?.detailsDocuments || []).map(({ nom, label }) => (
<li key={nom}>
<b>
{nom}
{label && ' :'}
</b>
{label}
<b>{nom}</b>
{label && (
<>
{' - '}
<i>label</i>
</>
)}
</li>
))}
</ul>,
Expand Down

0 comments on commit c9edf83

Please sign in to comment.