mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-11 17:39:41 +00:00
Rename tagMode to tag_mode.
This commit is contained in:
@@ -64,7 +64,7 @@ return [
|
||||
'budget_id' => 'Budget',
|
||||
'bill_id' => 'Subscription',
|
||||
'opening_balance' => 'Opening balance',
|
||||
'tagMode' => 'Tag mode',
|
||||
'tag_mode' => 'Tag mode',
|
||||
'virtual_balance' => 'Virtual balance',
|
||||
|
||||
|
||||
|
||||
@@ -82,13 +82,13 @@
|
||||
{% for tag in journal.tags %}
|
||||
|
||||
<h4 style="display: inline;"><a class="label label-success" href="{{ route('tags.show',tag) }}">
|
||||
{% if tag.tagMode == 'nothing' %}
|
||||
{% if tag.tag_mode == 'nothing' %}
|
||||
<span class="fa fa-fw fa-tag"></span>
|
||||
{% endif %}
|
||||
{% if tag.tagMode == 'balancingAct' %}
|
||||
{% if tag.tag_mode == 'balancingAct' %}
|
||||
<span class="fa fa-fw fa-refresh"></span>
|
||||
{% endif %}
|
||||
{% if tag.tagMode == 'advancePayment' %}
|
||||
{% if tag.tag_mode == 'advancePayment' %}
|
||||
<span class="fa fa-fw fa-sort-numeric-desc"></span>
|
||||
{% endif %}
|
||||
{{ tag.tag }}</a>
|
||||
|
||||
Reference in New Issue
Block a user