Merge pull request #285233 from microsoft/dev/dmitriv/separator-a11y-props

Avoid setting state-related ARIA attributes on separators
This commit is contained in:
Dmitriy Vasyura
2026-01-05 00:25:07 -08:00
committed by GitHub

View File

@@ -228,7 +228,7 @@ export class Separator implements IAction {
readonly tooltip: string = '';
readonly class: string = 'separator';
readonly enabled: boolean = false;
readonly checked: boolean = false;
readonly checked: undefined = undefined;
async run() { }
}