Skip to content

CRow: Additional props are not passed to underlying component #406

@jasperfirecai2

Description

@jasperfirecai2
  • Operating system and version
    • WSL 2 & Windows 11
  • Browser and version
    • Firefox Stable
  • A reduced test case or suggested fix using CodePen or JS 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) => {
and
<div className={classNames('row', repsonsiveClassNames, className)} ref={ref}>

suggested fix:

    return (
      <div {...rest} className={classNames('row', repsonsiveClassNames, className)} ref={ref}>
        {children}
      </div>
    )

#407

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      pFad - Phonifier reborn

      Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

      Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


      Alternative Proxies:

      Alternative Proxy

      pFad Proxy

      pFad v3 Proxy

      pFad v4 Proxy