Skip to content

Commit

Permalink
Added beschrijving table row
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Sep 21, 2023
1 parent a6f3b8d commit 9525af6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ export const WOOItemDetailTemplate: React.FC<WOOItemDetailTemplateProps> = ({ wo
<TableCell>{getItems.data.Samenvatting}</TableCell>
</TableRow>
)}
{getItems.data.Beschrijving && (
<TableRow className={styles.tableRow}>
<TableCell>{t("Beschrijving")}</TableCell>
<TableCell>{getItems.data.Beschrijving}</TableCell>
</TableRow>
)}

{getItems.data.Termijnoverschrijding && (
<TableRow className={styles.tableRow}>
Expand Down

0 comments on commit 9525af6

Please sign in to comment.