react-data-table-component icon indicating copy to clipboard operation
react-data-table-component copied to clipboard

Not expandable after adding div

Open somaria opened this issue 3 years ago • 0 comments

I have an expandable row that looks like below:

    {
      name: 'View More',
      selector: (row) => row.more,
      ignoreRowClick: false,
    },

Strangely, if I put a div on this row, like below, the expandable will not work.

    {
      name: 'View More',
      selector: (row) => <div>{row.more}</div>,
      ignoreRowClick: false,
    },

Wonder what I did wrong and any help would be greatly appreciated.

somaria avatar Apr 20 '22 16:04 somaria