diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-07 18:27:23 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-08 14:31:21 +0200 |
commit | 268aad37049f8704d4a67568040791faa6615716 (patch) | |
tree | d3c2849b6c43d4d18e783565af09fcd01eaaa10b /apps | |
parent | af9d7163db0ed8f46fc82cd4ea62104162d6b97c (diff) | |
download | nextcloud-server-268aad37049f8704d4a67568040791faa6615716.tar.gz nextcloud-server-268aad37049f8704d4a67568040791faa6615716.zip |
fix(federatedfilesharing): Add aria label to include the `X` in `X (formerly Twitter)` button.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/federatedfilesharing/src/components/PersonalSettings.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/src/components/PersonalSettings.vue b/apps/federatedfilesharing/src/components/PersonalSettings.vue index fbabbaa09c7..bec3c9652f7 100644 --- a/apps/federatedfilesharing/src/components/PersonalSettings.vue +++ b/apps/federatedfilesharing/src/components/PersonalSettings.vue @@ -29,7 +29,8 @@ <img class="social-button__icon social-button__icon--bright" :src="urlFacebookIcon"> </template> </NcButton> - <NcButton @click="goTo(shareXUrl)"> + <NcButton :aria-label="t('federatedfilesharing', 'X (formerly Twitter)')" + @click="goTo(shareXUrl)"> {{ t('federatedfilesharing', 'formerly Twitter') }} <template #icon> <img class="social-button__icon" :src="urlXIcon"> |