From 14dda98b0d06fbbad93da3ee63f05c361843e104 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 3 Apr 2026 15:42:03 +0200 Subject: [PATCH 1/2] fix(settings): hide list of webauthn devices if empty - resolves https://github.com/nextcloud/server/issues/59339 If there are no devices the list would be empty. This is invalid for accessibility, as every list needs at least one listitem. Ref: https://www.w3.org/TR/wai-aria-1.2/#mustContain Signed-off-by: Ferdinand Thiessen --- apps/settings/src/components/WebAuthn/Section.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/settings/src/components/WebAuthn/Section.vue b/apps/settings/src/components/WebAuthn/Section.vue index 8930e3511e82a..d0642a8c894f4 100644 --- a/apps/settings/src/components/WebAuthn/Section.vue +++ b/apps/settings/src/components/WebAuthn/Section.vue @@ -9,6 +9,7 @@

{{ t('settings', 'Set up your account for passwordless authentication following the FIDO2 standard.') }}

+ {{ t('settings', 'No devices configured.') }} From 3d5b555b9239f64e2a3ef9d69260c05b4478eaaa Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Tue, 7 Apr 2026 15:10:00 +0000 Subject: [PATCH 2/2] chore(assets): Recompile assets Signed-off-by: nextcloud-command