mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -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>
|
||||
</td>
|
||||
<td>
|
||||
@foreach(explode(' ',$entry->match) as $match)
|
||||
@foreach(explode(',',$entry->match) as $match)
|
||||
<span class="label label-info">{{{$match}}}</span>
|
||||
@endforeach
|
||||
</td>
|
||||
|
@ -38,7 +38,7 @@
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
Matching on
|
||||
@foreach(explode(' ',$recurring->match) as $word)
|
||||
@foreach(explode(',',$recurring->match) as $word)
|
||||
<span class="label label-info">{{{$word}}}</span>
|
||||
@endforeach
|
||||
between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}.
|
||||
|
Loading…
Reference in New Issue
Block a user