Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork270
Closed
Description
- Operating system and version
- WSL 2 & Windows 11
- Browser and version
- Firefox Stable
- Areduced test case or suggested fix usingCodePen orJS Bin
- Reduced test case: On a blank page, Create a CRow component with HTML-specific props, except className. e.g. onMouseOver, onDragEnter, etc. These event listeners do not function.
extra props in CRow get reduced into...rest
, which is then never used again outside of breakpoints. This is a pretty serious issue for those migrating, because it used to pass props, and pretty much every other component does pass props.
see
({ children, className, ...rest},ref)=>{ |
<divclassName={classNames('row',repsonsiveClassNames,className)}ref={ref}> |
suggested fix:
return(<div{...rest}className={classNames('row',repsonsiveClassNames,className)}ref={ref}>{children}</div>)
Metadata
Metadata
Assignees
Labels
No labels