We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40955ac commit 4cbc278Copy full SHA for 4cbc278
site/jekyll/tutorials/aspnetcore.md
@@ -912,8 +912,8 @@ class CommentBox extends React.Component {
912
}
913
handleCommentSubmit(comment) {
914
const data = new FormData();
915
- data.append('author', comment.author);
916
- data.append('text', comment.text);
+ data.append('Author', comment.author);
+ data.append('Text', comment.text);
917
918
const xhr = new XMLHttpRequest();
919
xhr.open('post', this.props.submitUrl, true);
0 commit comments