Skip to content

Commit

Permalink
table fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Sep 11, 2024
1 parent 9c7dc38 commit 46bccc3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export const PublicationsTableTemplate: React.FC<PublicationsTableTemplateProps>
</TableCell>

<TableCell>
<span data-tooltip-id={TOOLTIP_ID} data-tooltip-content={publication?.description} className={styles.name}>
{publication?.description !== '' ? publication?.description : "Geen beschrijvingm"}
<span data-tooltip-id={TOOLTIP_ID} data-tooltip-content={publication?.summary} className={styles.name}>
{publication?.summary !== '' ? publication?.summary : "Geen beschrijving"}

</span>
</TableCell>
Expand Down

0 comments on commit 46bccc3

Please sign in to comment.