_checked_in: Fix uninitialized value warning

This commit is contained in:
Daniel Friesel 2019-04-23 23:03:02 +02:00
parent 3389ca2bcf
commit 79dcd4677e

View file

@ -45,7 +45,7 @@
% }
</div>
<div class="progress green darken-3" style="height: 1ex;">
<div class="determinate white" style="width: <%= sprintf('%.2f', 100 * $status->{journey_completion}); %>%;"></div>
<div class="determinate white" style="width: <%= sprintf('%.2f', 100 * ($status->{journey_completion} // 0)); %>%;"></div>
</div>
</p>
% if ($status->{arr_name}) {