Fix react key conflic
This commit is contained in:
parent
978e7f2eaa
commit
de2759b3d5
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ const SongDetails = (props) => {
|
||||||
<TableBody>
|
<TableBody>
|
||||||
{Object.keys(data).map((key) => {
|
{Object.keys(data).map((key) => {
|
||||||
return (
|
return (
|
||||||
<TableRow key={record.id}>
|
<TableRow key={`${record.id}-${key}`}>
|
||||||
<TableCell component="th" scope="row">
|
<TableCell component="th" scope="row">
|
||||||
{translate(`resources.song.fields.${key}`, {
|
{translate(`resources.song.fields.${key}`, {
|
||||||
_: inflection.humanize(inflection.underscore(key)),
|
_: inflection.humanize(inflection.underscore(key)),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue