diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-10-11 17:09:30 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-10-16 09:54:41 -0700 |
commit | a7de1137d7d9a87992f8900f713a11e1a3fd9616 (patch) | |
tree | dc21e2ce7aff319e30003d48b70086265a7bd0df | |
parent | f2f1e9c8d652af4b6d2e0f33d43956134b77ab08 (diff) | |
download | nextcloud-server-a7de1137d7d9a87992f8900f713a11e1a3fd9616.tar.gz nextcloud-server-a7de1137d7d9a87992f8900f713a11e1a3fd9616.zip |
enh(a11y): Add label to app menu nav
Signed-off-by: Christopher Ng <chrng8@gmail.com>
-rw-r--r-- | core/src/components/AppMenu.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/components/AppMenu.vue b/core/src/components/AppMenu.vue index 6f65f185a4d..b9373c82ac6 100644 --- a/core/src/components/AppMenu.vue +++ b/core/src/components/AppMenu.vue @@ -20,7 +20,8 @@ --> <template> - <nav class="app-menu"> + <nav class="app-menu" + :aria-label="t('core', 'Applications menu')"> <ul class="app-menu-main"> <li v-for="app in mainAppList" :key="app.id" |