From 47b4aa5f63e165fc5864d258bf6bc0fd07887593 Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 23 May 2023 02:35:56 +0200 Subject: fix excess column in history statistics This patch fixes a typo in the history stats template. Previously, the HTML parser would close the travel time table data cell element but also create a new, empty table data cell in the process. This empty excess cell would create a new column in the table, causing all other rows to be shifted in the layout. Now the open travel time data cell element gets closed properly without creating a new cell, allowing the whole table to right align neatly. --- templates/_history_stats.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/_history_stats.html.ep b/templates/_history_stats.html.ep index 7e11ee7..bc97ccb 100644 --- a/templates/_history_stats.html.ep +++ b/templates/_history_stats.html.ep @@ -39,7 +39,7 @@ Fahrtzeit <%= $stats->{min_travel_real_strf} %> Stunden - (nach Fahrplan: <%= $stats->{min_travel_sched_strf} %>) + (nach Fahrplan: <%= $stats->{min_travel_sched_strf} %>) Wartezeit (nur Umstiege) -- cgit v1.2.3