Merge "[cleanup] Drop empty `class` attribute from `#footer > ul` elements"

This commit is contained in:
jenkins-bot 2020-04-28 18:41:40 +00:00 committed by Gerrit Code Review
commit 1a62d2d264
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ class VectorTemplate extends BaseTemplate {
$footerRows[] = [
'id' => $rowId,
'className' => '',
'className' => null,
'array-items' => $items
];
}

View File

@ -16,7 +16,7 @@
{{{html-hook-vector-before-footer}}}
<div id="footer" class="mw-footer" role="contentinfo" {{{html-userlangattributes}}}>
{{#array-footer-rows}}
<ul id="{{id}}" class="{{className}}">
<ul id="{{id}}" {{#className}}class="{{.}}"{{/className}}>
{{#array-items}}
<li id="{{id}}">{{{html}}}</li>
{{/array-items}}