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:
Ryo Shibayama
2016-06-12 16:03:13 +09:00
committed by Keyan Zhang
parent 4094a495cf
commit 7398aac852
3 changed files with 3 additions and 3 deletions

View File

@@ -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>
);

View File

@@ -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>
);

View File

@@ -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>
);