MemberDataSheet: Fix bug where no spaces are in billing address PLZ

This commit is contained in:
2024-02-10 18:18:27 +01:00
parent 59cd69ddaf
commit 68f1a2c091

View File

@ -63,8 +63,8 @@
<td colspan="5"> <td colspan="5">
@if (Model.Member.BillingAddress != null) { @if (Model.Member.BillingAddress != null) {
@Model.Member.BillingAddress.PostalDest.AtPlz?.Plz @Model.Member.BillingAddress.PostalDest.AtPlz?.Plz
@Model.Member.BillingAddress.PostalDest.AtPlz?.Dest @(" ")@Model.Member.BillingAddress.PostalDest.AtPlz?.Dest
@("(")@Model.Member.BillingAddress.PostalDest.AtPlz?.Ort.Name@(")") @(" (")@Model.Member.BillingAddress.PostalDest.AtPlz?.Ort.Name@(")")
} }
</td> </td>
</tr> </tr>