mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Display bug in recurring transactions.
This commit is contained in:
parent
d7a4bf22c6
commit
2f8e3a0707
@ -22,7 +22,7 @@
|
|||||||
<a href="{{route('recurring.show',$entry->id)}}" title="{{{$entry->name}}}">{{{$entry->name}}}</a>
|
<a href="{{route('recurring.show',$entry->id)}}" title="{{{$entry->name}}}">{{{$entry->name}}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@foreach(explode(' ',$entry->match) as $match)
|
@foreach(explode(',',$entry->match) as $match)
|
||||||
<span class="label label-info">{{{$match}}}</span>
|
<span class="label label-info">{{{$match}}}</span>
|
||||||
@endforeach
|
@endforeach
|
||||||
</td>
|
</td>
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
Matching on
|
Matching on
|
||||||
@foreach(explode(' ',$recurring->match) as $word)
|
@foreach(explode(',',$recurring->match) as $word)
|
||||||
<span class="label label-info">{{{$word}}}</span>
|
<span class="label label-info">{{{$word}}}</span>
|
||||||
@endforeach
|
@endforeach
|
||||||
between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}.
|
between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}.
|
||||||
|
Loading…
Reference in New Issue
Block a user