Skip to content

Commit

Permalink
Merge pull request #79 from ConductionNL/feature/XW-77/detail-page
Browse files Browse the repository at this point in the history
feature/XW-77/detail-page
  • Loading branch information
remko48 authored Sep 21, 2023
2 parents a6f3b8d + 9525af6 commit d7e3b8e
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 d7e3b8e

Please sign in to comment.