From c4eb5b32191f28f890906cf32c4bdd1da6585675 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Mon, 15 Jun 2020 23:33:24 +0200 Subject: [PATCH] quickfix --- bahnplan.web/Pages/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bahnplan.web/Pages/Index.cshtml b/bahnplan.web/Pages/Index.cshtml index 8dd2fad..f35a3ff 100644 --- a/bahnplan.web/Pages/Index.cshtml +++ b/bahnplan.web/Pages/Index.cshtml @@ -54,7 +54,7 @@ @legs.Last().ArrStation.Delimit(30)
- @DateTime.Parse(legs.Last().DepTime).ToString("ddd dd.MM.yyyy, HH:mm") + @DateTime.Parse(legs.Last().ArrTime).ToString("ddd dd.MM.yyyy, HH:mm") @Html.Raw(legs.Where(leg => !string.IsNullOrWhiteSpace(leg.Comment)).Select(p => p.Comment.Replace(", ", "
")).DefaultIfEmpty("").Aggregate((s1, s2) => $"{s1}
{s2}"))