mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
fix(inline-checkbox): remove aria-checked="mixed"
if indeterminate (#1436)
Ref: https://github.com/carbon-design-system/carbon/pull/11908
This commit is contained in:
parent
b4ffed9044
commit
4fd08cd25c
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
indeterminate="{indeterminate}"
|
||||
id="{id}"
|
||||
{...$$restProps}
|
||||
aria-checked="{indeterminate ? 'mixed' : checked}"
|
||||
aria-checked="{indeterminate ? undefined : checked}"
|
||||
on:change
|
||||
/>
|
||||
<label
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue