Fix missing label of Files navigation sublist toggles
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
abedc275d9
commit
f86a2239e7
|
@ -93,7 +93,10 @@ function NavigationListElements($item, $l, $pinned) {
|
||||||
NavigationElementMenu($item);
|
NavigationElementMenu($item);
|
||||||
if (isset($item['sublist'])) {
|
if (isset($item['sublist'])) {
|
||||||
?>
|
?>
|
||||||
<button class="collapse app-navigation-noclose" <?php if (sizeof($item['sublist']) == 0) { ?> style="display: none" <?php } ?>></button>
|
<button class="collapse app-navigation-noclose"
|
||||||
|
aria-label="<?php p($l->t('Toggle %1$s sublist', $item['name'])) ?>"
|
||||||
|
<?php if (sizeof($item['sublist']) == 0) { ?> style="display: none" <?php } ?>>
|
||||||
|
</button>
|
||||||
<ul id="sublist-<?php p($item['id']); ?>">
|
<ul id="sublist-<?php p($item['id']); ?>">
|
||||||
<?php
|
<?php
|
||||||
foreach ($item['sublist'] as $item) {
|
foreach ($item['sublist'] as $item) {
|
||||||
|
|
Loading…
Reference in New Issue