Prechádzať zdrojové kódy

Fix empty form groups (#3773)

Christian Gripp 9 rokov pred
rodič
commit
ea56171f35

+ 1 - 0
CHANGELOG.md

@@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 ### Fixed
 - Fix detection of path when using nested properties with underscores in `AdminHelper:getElementAccessPath` method
 - Fixed bad rendering on datetime field with `single_text` widget for date and time
+- Fixed rendering of empty form groups
 
 ## [3.0.0](https://github.com/sonata-project/SonataAdminBundle/compare/2.3.10...3.0.0) - 2016-05-08
 ### Added

+ 1 - 1
Resources/views/CRUD/base_edit_form_macro.html.twig

@@ -1,7 +1,7 @@
 {% macro render_groups(admin, form, groups, has_tab) %}
     <div class="row">
 
-    {% for code in groups %}
+    {% for code in groups if admin.formgroups[code] is defined %}
         {% set form_group = admin.formgroups[code] %}
 
         <div class="{{ form_group.class|default('col-md-12') }}">