瀏覽代碼

Merge pull request #5326 from 991jo/patch-1

Fixed a UI Bug where there is no whitespace after grouped custom links.
Jeremy Stretch 5 年之前
父節點
當前提交
39f4dea051
共有 1 個文件被更改,包括 1 次插入1 次删除
  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'