From 24334fd2bf45128a0f11ffe829ca0e1a701847b1 Mon Sep 17 00:00:00 2001 From: Taneli Tuomola Date: Wed, 10 Apr 2024 09:25:43 +0300 Subject: [PATCH] fix #15246 MultiSelect aria checked --- src/app/components/multiselect/multiselect.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 02133ce436f..3ad44ed173a 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -70,11 +70,12 @@ export const MULTISELECT_VALUE_ACCESSOR: any = { [attr.data-p-focused]="focused" [attr.data-p-highlight]="selected" [attr.data-p-disabled]="disabled" + [attr.aria-checked]="selected" (click)="onOptionClick($event)" (mouseenter)="onOptionMouseEnter($event)" >
-
+