From 93f849d0b86128359a233b2df5c9a53a5a64440e Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Wed, 3 Dec 2025 10:16:31 -0800 Subject: [PATCH] fix: Add 'blocks' to toolbox category ARIA labels (#9504) --- core/toolbox/category.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/toolbox/category.ts b/core/toolbox/category.ts index 7b0db7b3f..0d3c9382d 100644 --- a/core/toolbox/category.ts +++ b/core/toolbox/category.ts @@ -307,6 +307,7 @@ export class ToolboxCategory if (className) { dom.addClass(toolboxLabel, className); } + aria.setState(toolboxLabel, aria.State.LABEL, `${name} blocks`); return toolboxLabel; }