mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Duh. Bug fixed.
This commit is contained in:
parent
9cb6c7697e
commit
7336367eff
@ -23,11 +23,11 @@
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
@for($i=0;$i<$entry->parts;$i++)
|
||||
<!-- {{$entry->currentRep->currentamount}} <= {{$entry->bars[$i]['amount']}} -->
|
||||
<!-- {{$entry->currentRep->currentamount}} < {{$entry->bars[$i]['amount']}} -->
|
||||
<div class="col-lg-{{$entry->barCount}} col-md-{{$entry->barCount}} col-sm-{{$entry->barCount}}">
|
||||
<div class="progress">
|
||||
@if($entry->currentRep->currentamount <= $entry->bars[$i]['amount'])
|
||||
<!-- TRUE (smaller or equal) -->
|
||||
@if($entry->currentRep->currentamount < $entry->bars[$i]['amount'])
|
||||
<!-- TRUE (smaller) -->
|
||||
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">{{mf($entry->bars[$i]['amount'],false)}}</div>
|
||||
@else
|
||||
<!-- FALSE (larger) -->
|
||||
|
Loading…
Reference in New Issue
Block a user