diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-27 09:23:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 09:23:50 +0200 |
commit | 1cf6839a3aa81a5b30379c4dd5a222bef4b22eb2 (patch) | |
tree | 1415d275e29b8df6f7ba557b70fbc1b6b5b133f0 | |
parent | 97462295587f4016066264edb6eed5d5e17903f3 (diff) | |
parent | 7d956784902f77f54735e418aae23eccae9d5eb3 (diff) | |
download | nextcloud-server-1cf6839a3aa81a5b30379c4dd5a222bef4b22eb2.tar.gz nextcloud-server-1cf6839a3aa81a5b30379c4dd5a222bef4b22eb2.zip |
Merge pull request #33271 from nextcloud/enh/a11y-new-file-menu
Use explicit name for new file/folder menu
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index ac590fe2d74..534ce0148be 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3841,8 +3841,8 @@ return; } var $newButton = $(OCA.Files.Templates['template_addbutton']({ - addText: t('files', 'New'), - iconClass: 'icon-add' + addText: t('files', 'New file/folder menu'), + iconClass: 'icon-add', })); $actionsContainer.prepend($newButton); |