From 12d0e5ed65663b666d9f2cbbc36e753df0a06476 Mon Sep 17 00:00:00 2001 From: HirschleM Date: Thu, 3 Jul 2025 11:27:51 +0200 Subject: [PATCH] MH: RosterReport --- Report/DefaultReports/RosterReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Report/DefaultReports/RosterReport.cs b/Report/DefaultReports/RosterReport.cs index 8e58c6876..4e56d2797 100644 --- a/Report/DefaultReports/RosterReport.cs +++ b/Report/DefaultReports/RosterReport.cs @@ -348,7 +348,7 @@ namespace BeWo.Report.DefaultReports if (abwesenheit.AbsenceSpan.ContainsDate(new DateTime(monthAndYear.Year, monthAndYear.Month, tag))) { cell.Row.Cells[index].BackColor = Color.White; - cell.Row.Cells[index].Text = abwesenheit.Reason.Description[0].ToString(); + cell.Row.Cells[index].Text = abwesenheit.Reason.Description[0].ToString(); // Der Text erscheint nicht, scheint überschrieben zu werden cell.Row.Cells[index].ForeColor = Color.Red; } }