1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

Don't render empty divs when there are no custom fields on the issue form (#20501).

git-svn-id: http://svn.redmine.org/redmine/trunk@14512 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-08-18 07:05:25 +00:00
parent d00c5f06d9
commit b4c091d063

View File

@ -1,4 +1,5 @@
<% custom_field_values = @issue.editable_custom_field_values %>
<% if custom_field_values.present? %>
<div class="splitcontent">
<div class="splitcontentleft">
<% i = 0 %>
@ -12,3 +13,4 @@
<% end -%>
</div>
</div>
<% end %>