Skip to content

Commit

Permalink
empty brackets (#4363)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo authored Nov 8, 2023
1 parent a705b47 commit 65c68b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<ul>
<li ng-if="!disabled" class="pull-left"
ng-repeat="t in item[field]"
ng-click="removeTerm(t)">{{ t.name }} ({{ t.country_code }}) <i role="button" aria-label="{{'Remove item'| translate }}" class="icon-close-small"></i></li>
ng-click="removeTerm(t)">{{ t.name }} {{ t.country_code && '('+ t.country_code +')' }} <i role="button" aria-label="{{'Remove item'| translate }}" class="icon-close-small"></i></li>
<li ng-if="disabled" class="pull-left disabled"
ng-repeat="t in item[field]">{{ t.name }}</li>
</ul>
Expand Down

0 comments on commit 65c68b7

Please sign in to comment.