mbrn / material-table

Datatable for React based on material-ui's table with additional features

Home Page:https://material-table.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Row Unique Id for MaterialTable v4

ofirTelecareBill opened this issue · comments

I'm using MaterialTable v4, and I'm trying to get rid of a warning:

The table requires all rows to have an unique id property. A row was provided without id in the rows prop. To prevent the loss of state between renders, please provide an unique id for each row.

I tried adding this:

components={{
       Row: props => <MTableBodyRow id="SOME-ROW-ID-HERE" {...props} />
}}

But it's complaining about MTableBodyRow:

Line 1000:40: 'MTableBodyRow' is not defined react/jsx-no-undef

Any thoughts on this?

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You can reopen it if it required.