diff --git a/portal/src/views/comments/Comments.vue b/portal/src/views/comments/Comments.vue
index ebc8cb532..73112304f 100644
--- a/portal/src/views/comments/Comments.vue
+++ b/portal/src/views/comments/Comments.vue
@@ -4,8 +4,8 @@
{{ errorMessage }}
@@ -82,7 +82,12 @@
v-if="newReply && newReply.threadId === post.id"
>
-
+
@@ -152,12 +157,12 @@ export default Vue.extend({
newComment: {
projectId: typeof this.parentData === "number" ? this.parentData : null,
bookmark: null,
- body: null,
+ body: "",
},
newReply: {
projectId: typeof this.parentData === "number" ? this.parentData : null,
bookmark: null,
- body: null,
+ body: "",
threadId: null,
},
errorMessage: null,