From 2a823836ee24782c96e2cdc19c999523a57475d3 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 19 Jul 2026 17:21:27 +0200 Subject: [PATCH] fix(a11y): label the bucket selector with its purpose and current bucket The trigger announced only the bare bucket name ("To-Do, button"); it now announces "Kanban bucket: To-Do". Claude-Session: https://claude.ai/code/session_018prq5WqRL38EGhPNQKqZUP --- frontend/src/components/tasks/partials/BucketSelect.vue | 1 + frontend/src/i18n/lang/en.json | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/components/tasks/partials/BucketSelect.vue b/frontend/src/components/tasks/partials/BucketSelect.vue index 057cb2aa2..5c316ecd3 100644 --- a/frontend/src/components/tasks/partials/BucketSelect.vue +++ b/frontend/src/components/tasks/partials/BucketSelect.vue @@ -7,6 +7,7 @@ {{ currentBucketTitle }} diff --git a/frontend/src/i18n/lang/en.json b/frontend/src/i18n/lang/en.json index ae92e8a58..e1df10795 100644 --- a/frontend/src/i18n/lang/en.json +++ b/frontend/src/i18n/lang/en.json @@ -994,6 +994,7 @@ "deleteSuccess": "The task has been deleted successfully.", "duplicateSuccess": "The task was duplicated successfully.", "noBucket": "No bucket", + "bucketSelectLabel": "Kanban bucket: {bucket}", "bucketChangedSuccess": "The task bucket has been changed successfully.", "belongsToProject": "This task belongs to project '{project}'", "back": "Back to project",