Skip to content
This repository was archived by the owner on Jun 17, 2023. It is now read-only.

Commit 0736f80

Browse files
fix(FormGroup): allow disable when tag is fieldset (reactstrap#1547)
fieldset allows the disabled attribute and has special handling in the browser. This change will allow the disabled prop to be passed through when the tag is a fieldset fixes reactstrap#1546
1 parent ae6fe93 commit 0736f80

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/FormGroup.js

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ const FormGroup = (props) => {
3737
check && inline ? 'form-check-inline' : false,
3838
check && disabled ? 'disabled' : false
3939
), cssModule);
40+
41+
if (Tag === 'fieldset') {
42+
attributes.disabled = disabled;
43+
}
4044

4145
return (
4246
<Tag {...attributes} className={classes} />

0 commit comments

Comments
 (0)