Fix category and tag buttons using input groups from bootstrap

This commit is contained in:
Marcio Barrientos 2020-10-01 03:15:35 -06:00
parent 8096c50130
commit fc890d71c1
1 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,13 @@
<div class="add-existing-autocompleter">
<% loop $Fields %>
<span>$Field</span>
<% end_loop %>
<div class="input-group">
<% loop $Fields %>
<% if $Type == 'action' %>
<div class="input-group-append">
$Field
</div>
<% else %>
$Field
<% end_if %>
<% end_loop %>
</div>
</div>