React MUI Datatables - merge rows if they have the same value

Viewed 25

certain rows from my database contain the same values expect time. How to marge them together that my table shows me the last of them and the rest of the rows ?

Example: enter image description here

1 Answers

You could use the .filter() method to filter the (almost) duplicates out of your array before passing it to the MUI Datatable.

Related