From 2c1eb9d23694d9e655f68954f946342c3476b56c Mon Sep 17 00:00:00 2001 From: Cees van Egmond Date: Wed, 6 Jun 2018 13:11:40 +0200 Subject: [PATCH] Bugfix: Or check instead fo and --- Resources/views/CRUD/list.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/views/CRUD/list.html.twig b/Resources/views/CRUD/list.html.twig index 4646333..e15c30d 100644 --- a/Resources/views/CRUD/list.html.twig +++ b/Resources/views/CRUD/list.html.twig @@ -19,7 +19,7 @@ {% endblock %} {% block list_footer %} - {% if admin.datagrid.results|length > 0 and (batchactions | length or export_formats | length) %} + {% if admin.datagrid.results|length > 0 or (batchactions | length or export_formats | length) %} {{ parent() }} {% endif %} {% endblock %} \ No newline at end of file