diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-26 17:28:21 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-26 17:28:21 +0200 |
commit | 7fe95532c1bc559a9ad2c4b96ec37bd0e30f8598 (patch) | |
tree | c78cb5abf2833c107ac018ac98886e619231b450 /templates/landingpage.html.ep | |
parent | 45a4089431002ee01b11880d463dd3513b0657ca (diff) |
Use JSON for messages and route storage, prepare for extended route data
Diffstat (limited to 'templates/landingpage.html.ep')
-rw-r--r-- | templates/landingpage.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/landingpage.html.ep b/templates/landingpage.html.ep index 742f684..2c7496d 100644 --- a/templates/landingpage.html.ep +++ b/templates/landingpage.html.ep @@ -34,7 +34,7 @@ <tbody> % my $is_after = 0; % for my $station (@{$status->{route_after}}) { - <tr><td><a class="action-cancelled-to" data-station="<%= $station %>"><%= $station %></a></td></tr> + <tr><td><a class="action-cancelled-to" data-station="<%= $station->[0] %>"><%= $station->[0] %></a></td></tr> % } </tbody> </table> |