diff --git a/client/coral-embed-stream/src/components/Comment.js b/client/coral-embed-stream/src/components/Comment.js index 86149b178..2178e6c44 100644 --- a/client/coral-embed-stream/src/components/Comment.js +++ b/client/coral-embed-stream/src/components/Comment.js @@ -196,8 +196,8 @@ export default class Comment extends React.Component { editComment: React.PropTypes.func, } - editComment = () => { - return this.props.editComment(this.props.comment.id, this.props.asset.id); + editComment = (...args) => { + return this.props.editComment(this.props.comment.id, this.props.asset.id, ...args); } onClickEdit (e) {