diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2021-04-13 20:06:48 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2021-04-19 21:02:53 +0200 |
commit | abedc275d9b7c5f929e6a21ee5d77f030e2f4b7c (patch) | |
tree | 5196db8825f15833870fcf257136b4053ed0047a /apps/files/templates | |
parent | 34396091e8ffac0beea97a8d3ba6ed4d217eaf58 (diff) | |
download | nextcloud-server-abedc275d9b7c5f929e6a21ee5d77f030e2f4b7c.tar.gz nextcloud-server-abedc275d9b7c5f929e6a21ee5d77f030e2f4b7c.zip |
Fix missing label of grid view toggle
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 1 |
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> |