Browse Source

Fixed a UI Bug where there is no whitespace after grouped custom links.

See #5325 for details
991jo 5 years ago
parent
commit
7cf4095983
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/extras/templatetags/custom_links.py

+ 1 - 1
netbox/extras/templatetags/custom_links.py

@@ -16,7 +16,7 @@ GROUP_BUTTON = '<div class="btn-group">\n' \
                '{} <span class="caret"></span>\n' \
                '</button>\n' \
                '<ul class="dropdown-menu pull-right">\n' \
-               '{}</ul></div>'
+               '{}</ul></div>\n'
 GROUP_LINK = '<li><a href="{}"{}>{}</a></li>\n'