Skip to content

Commit

Permalink
adjusted client list and details to have postalcode
Browse files Browse the repository at this point in the history
  • Loading branch information
JochemVH1 committed Jul 4, 2024
1 parent ea2a902 commit 62f9fd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/client/controls/ClientDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ClientDetails = ({client, onOpenDetails, onOpenDetailsTitle}: ClientDetail
</Link>
</HeaderWithEditIcon>
<div>{client.address}</div>
<div>{client.city}</div>
<div>{client.postalCode} {client.city}</div>
<div>{client.telephone}</div>
<div>{client.btw}</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/client/models/getClientFeature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const clientListConfig = (config: ClientFeatureBuilderConfig): IList<ClientModel
<>
<span>{client.address}</span>
<br />
<span>{client.city}</span>
<span>{client.postalCode} {client.city}</span>
<br />
<span>{client.telephone}</span>
</>
Expand Down

0 comments on commit 62f9fd4

Please sign in to comment.