Skip to content

Commit dbd01f2

Browse files
committed
fix: Prop "id" not propagated to <textarea>
1 parent b7c5f48 commit dbd01f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/coreui-react/src/components/form/CFormTextarea.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const CFormTextarea = forwardRef<HTMLTextAreaElement, CFormTextareaProps>
7878
tooltipFeedback={tooltipFeedback}
7979
valid={valid}
8080
>
81-
<textarea className={_className} {...rest} ref={ref}>
81+
<textarea className={_className} id={id} {...rest} ref={ref}>
8282
{children}
8383
</textarea>
8484
</CFormControlWrapper>

0 commit comments

Comments
 (0)