From d2b96736bb494aea177ad9428a02f4bba37f2e01 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Tue, 17 Oct 2023 23:02:28 +0200 Subject: [PATCH] DeliveryConfirmation: remove name from title --- Elwig/Documents/DeliveryConfirmation.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Elwig/Documents/DeliveryConfirmation.cshtml.cs b/Elwig/Documents/DeliveryConfirmation.cshtml.cs index 7e4fb3d..8a3d6da 100644 --- a/Elwig/Documents/DeliveryConfirmation.cshtml.cs +++ b/Elwig/Documents/DeliveryConfirmation.cshtml.cs @@ -13,7 +13,7 @@ namespace Elwig.Documents { public Dictionary MemberBins; public DeliveryConfirmation(AppDbContext ctx, int year, Member m) : - base($"Anlieferungsbestätigung {year} – {((IAddress?)m.BillingAddress ?? m).Name}", m) { + base($"Anlieferungsbestätigung {year}", m) { Year = year; ShowDateAndLocation = true; UseBillingAddress = true;