Comment button order

This commit is contained in:
Belen Curcio
2017-01-26 16:09:56 -03:00
parent dc89b22abb
commit 58c4d5ceb5
2 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -105,11 +105,6 @@ class Comment extends React.Component {
<PubDate created_at={comment.created_at} />
<Content body={comment.body} />
<div className="commentActionsLeft">
<ReplyButton
onClick={this.onReplyBoxClick}
parentCommentId={parentId || comment.id}
currentUserId={currentUser && currentUser.id}
banned={false} />
<LikeButton
like={like}
id={comment.id}
@@ -117,8 +112,14 @@ class Comment extends React.Component {
deleteAction={deleteAction}
showSignInDialog={showSignInDialog}
currentUser={currentUser} />
<ReplyButton
onClick={this.onReplyBoxClick}
parentCommentId={parentId || comment.id}
currentUserId={currentUser && currentUser.id}
banned={false} />
</div>
<div className="commentActionsRight">
<PermalinkButton articleURL={asset.url} commentId={comment.id} />
<FlagComment
flag={flag}
id={comment.id}
@@ -127,7 +128,6 @@ class Comment extends React.Component {
deleteAction={deleteAction}
showSignInDialog={showSignInDialog}
currentUser={currentUser} />
<PermalinkButton articleURL={asset.url} commentId={comment.id} />
</div>
{
this.state.replyBoxVisible
@@ -1,12 +1,12 @@
{
"en": {
"permalink": {
"permalink": "Permalink"
"permalink": "Link"
}
},
"es": {
"permalink": {
"permalink": "Enlace permanente"
"permalink": "Enlace"
}
}
}