Skip to content

Commit

Permalink
fix: draggableId needs to be string in groupbar (#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLemayian committed Feb 7, 2023
1 parent b2559cf commit e8c2e8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MTableGroupbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ function MTableGroupbar(props) {
{props.groupColumns.map((columnDef, index) => {
return (
<Draggable
key={columnDef.tableData.id}
draggableId={columnDef.tableData.id}
key={columnDef.tableData.id.toString()}
draggableId={columnDef.tableData.id.toString()}
index={index}
>
{(provided, snapshot) => (
Expand Down

0 comments on commit e8c2e8a

Please sign in to comment.