Skip to content

Commit 26bbf06

Browse files
authored
Merge pull request #1801 from dxc-technology/Mil4n0r/radio_button-typo
Fixed typo in RadioGroup
2 parents 926e1aa + bc467bc commit 26bbf06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/radio-group/RadioGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const DxcRadioGroup = React.forwardRef<RefType, RadioGroupPropsType>(
147147
aria-invalid={error ? true : false}
148148
aria-errormessage={error ? errorId : undefined}
149149
aria-required={!disabled && !readOnly && !optional}
150-
aria-readOnly={readOnly}
150+
aria-readonly={readOnly}
151151
aria-orientation={stacking === "column" ? "vertical" : "horizontal"}
152152
>
153153
<ValueInput name={name} disabled={disabled} value={value ?? innerValue ?? ""} readOnly />

0 commit comments

Comments
 (0)