diff --git a/core/modules/views_ui/templates/views-ui-container.html.twig b/core/modules/views_ui/templates/views-ui-container.html.twig index 2d02467..d45b158 100644 --- a/core/modules/views_ui/templates/views-ui-container.html.twig +++ b/core/modules/views_ui/templates/views-ui-container.html.twig @@ -7,7 +7,6 @@ * - attributes: HTML attributes to apply to the container element. * - children: The remaining elements such as dropbuttons and tabs. * - * @see template_preprocess() * @see template_preprocess_views_ui_container() * * @ingroup themeable diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module index 31355d0..66af7a9 100644 --- a/core/modules/views_ui/views_ui.module +++ b/core/modules/views_ui/views_ui.module @@ -181,7 +181,7 @@ function views_ui_theme() { // Generic container wrapper, to use instead of theme_container when an id // is not desired. 'views_ui_container' => array( - 'variables' => array('children' => NULL), + 'variables' => array('children' => NULL, 'attributes' => array()), 'template' => 'views-ui-container', 'file' => 'views_ui.theme.inc', ),