Skip to content

Commit

Permalink
Fix #6168: readonly to readOnly DOM prop
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Mar 20, 2024
1 parent dd799ec commit 7dc3acb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/lib/radiobutton/RadioButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const RadioButton = React.memo(
onBlur: onBlur,
onChange: onChange,
disabled: props.disabled,
readonly: props.readonly,
readOnly: props.readonly,
required: props.required,
tabIndex: props.tabIndex,
className: cx('input'),
Expand Down
2 changes: 1 addition & 1 deletion components/lib/togglebutton/ToggleButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const ToggleButton = React.memo(
'aria-pressed': props.checked,
'aria-invalid': props.invalid,
disabled: props.disabled,
readonly: props.readonly,
readOnly: props.readonly,
value: props.checked,
checked: props.checked
},
Expand Down
2 changes: 1 addition & 1 deletion components/lib/tristatecheckbox/TriStateCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const TriStateCheckbox = React.memo(
type: 'checkbox',
'aria-invalid': props.invalid,
disabled: props.disabled,
readonly: props.readOnly,
readOnly: props.readOnly,
value: props.value,
checked: props.value,
onChange: onChange
Expand Down

0 comments on commit 7dc3acb

Please sign in to comment.