Merge pull request #624 from MarcioBarrientos/614-category-tag-button

Fix category and tag buttons using input groups from bootstrap
This commit is contained in:
Daniel Hensby 2020-10-02 10:07:35 +01:00 committed by GitHub
commit 053660e795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>