Skip to content

Commit e8c2e8a

Browse files
fix: draggableId needs to be string in groupbar (#740)
1 parent b2559cf commit e8c2e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/MTableGroupbar/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ function MTableGroupbar(props) {
103103
{props.groupColumns.map((columnDef, index) => {
104104
return (
105105
<Draggable
106-
key={columnDef.tableData.id}
107-
draggableId={columnDef.tableData.id}
106+
key={columnDef.tableData.id.toString()}
107+
draggableId={columnDef.tableData.id.toString()}
108108
index={index}
109109
>
110110
{(provided, snapshot) => (

0 commit comments

Comments
 (0)