Skip to content
Snippets Groups Projects
Commit 38fa2390 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2368957 by mikispeed: Fixed Set class on MoreLink as array instead as string.

parent ecaa5279
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
namespace Drupal\Core\Render\Element;
/**
* Provides a link render element.
* Provides a link render element for a "more" link, like those used in blocks.
*
* @RenderElement("more_link")
*/
......@@ -24,7 +24,7 @@ public function getInfo() {
'#title' => $this->t('More'),
'#theme_wrappers' => array(
'container' => array(
'#attributes' => array('class' => 'more-link'),
'#attributes' => array('class' => array('more-link')),
),
),
) + $info;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment