Skip to content

Commit 0ae399f

Browse files
authoredAug 13, 2024··
fix!: FormControl から disabled を消す (#4845)
1 parent 0d74a9a commit 0ae399f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/smarthr-ui/src/components/FormControl/FormControl.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -347,4 +347,5 @@ const isComboBoxElement = (
347347
return type === SingleComboBox || type === MultiComboBox
348348
}
349349

350-
export const FormControl: React.FC<Omit<Props & ElementProps, 'as'>> = ActualFormControl
350+
export const FormControl: React.FC<Omit<Props & ElementProps, 'as' | 'disabled'>> =
351+
ActualFormControl

0 commit comments

Comments
 (0)
Please sign in to comment.