mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
Fix Japanese/Italian/Korean tutorials (#7020)
* Fix japanese tutorial * Fix Italian tutorial as same as e4fe662 * Fix Korean tutorial as same as e4fe662
This commit is contained in:
committed by
Keyan Zhang
parent
4094a495cf
commit
7398aac852
@@ -327,7 +327,7 @@ var CommentList = React.createClass({
|
||||
render: function() {
|
||||
var commentNodes = this.props.data.map(function (comment) {
|
||||
return (
|
||||
<Comment author={comment.author}>
|
||||
<Comment author={comment.author} key={comment.id}>
|
||||
{comment.text}
|
||||
</Comment>
|
||||
);
|
||||
|
||||
@@ -324,7 +324,7 @@ var CommentList = React.createClass({
|
||||
render: function() {
|
||||
var commentNodes = this.props.data.map(function (comment) {
|
||||
return (
|
||||
<Comment author={comment.author}>
|
||||
<Comment author={comment.author} key={comment.id}>
|
||||
{comment.text}
|
||||
</Comment>
|
||||
);
|
||||
|
||||
@@ -331,7 +331,7 @@ var CommentList = React.createClass({
|
||||
render: function() {
|
||||
var commentNodes = this.props.data.map(function (comment) {
|
||||
return (
|
||||
<Comment author={comment.author}>
|
||||
<Comment author={comment.author} key={comment.id}>
|
||||
{comment.text}
|
||||
</Comment>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user