diff options
| author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-06 18:24:19 +0100 | 
|---|---|---|
| committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-06 18:24:19 +0100 | 
| commit | 70b8717c3025f09550cf144e838ee0313346ef72 (patch) | |
| tree | 06f148163fd38493262c15d8aeb117f17698b226 | |
| parent | 4952d3845a89fd78966c3ae6f15e551d73c37dee (diff) | |
train_details: handle undefined $wr->direction
| -rw-r--r-- | templates/_train_details.html.ep | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index ccdb70a..4943ba2 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -116,7 +116,7 @@  %   if (my $wr = $departure->{wr}) {        <div class="wagonorder-preview">  %     my @wagons = $wr->wagons; -%     my $direction = $wr->direction == 100 ? '→' : '←'; +%     my $direction = $wr->direction ? $wr->direction == 100 ? '→' : '←' : q{};  %     if ($departure->{direction}) {  %       $direction = $departure->{direction} eq 'l' ? '◀' : '▶';  %       if (($departure->{direction} eq 'l' ? 0 : 100) != $wr->direction) { | 
