diff --git a/backend/src/resolvers/comments.js b/backend/src/resolvers/comments.js
index 60ecbcc8e..899338644 100644
--- a/backend/src/resolvers/comments.js
+++ b/backend/src/resolvers/comments.js
@@ -10,7 +10,7 @@ export default {
const session = context.driver.session()
const transactionRes = await session.run(`
MATCH (comment:Comment)-[:COMMENTS]->(post:Post {id: $postId})
- RETURN comment {.id, .contentExcerpt, .createdAt}`, {
+ RETURN comment {.id, .contentExcerpt, .createdAt} ORDER BY comment.createdAt ASC`, {
postId
})
diff --git a/webapp/components/CommentForm/index.vue b/webapp/components/CommentForm/index.vue
index bb71af1f7..b1f3ddf80 100644
--- a/webapp/components/CommentForm/index.vue
+++ b/webapp/components/CommentForm/index.vue
@@ -1,45 +1,43 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{ $t('actions.cancel') }}
-
-
-
-
- {{ $t('post.comment.submit') }}
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('actions.cancel') }}
+
+
+
+
+ {{ $t('post.comment.submit') }}
+
+
+
+
+
+