Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2021-04-13 21:06:48 +0300
committerJan C. Borchardt <hey@jancborchardt.net>2021-04-19 22:02:53 +0300
commitabedc275d9b7c5f929e6a21ee5d77f030e2f4b7c (patch)
tree5196db8825f15833870fcf257136b4053ed0047a /apps
parent34396091e8ffac0beea97a8d3ba6ed4d217eaf58 (diff)
Fix missing label of grid view toggle
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/templates/index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index 8b6e2b0b91b..1e8b7cf1ac9 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -4,6 +4,7 @@
<?php if (!$_['isIE']) { ?>
<input type="checkbox" class="hidden-visually" id="showgridview"
+ aria-label="<?php p($l->t('Toggle grid view'))?>"
<?php if ($_['showgridview']) { ?>checked="checked" <?php } ?>/>
<label id="view-toggle" for="showgridview" class="button <?php p($_['showgridview'] ? 'icon-toggle-filelist' : 'icon-toggle-pictures') ?>"
title="<?php p($l->t('Toggle grid view'))?>"></label>