We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703c695 commit d704e69Copy full SHA for d704e69
client/src/components/NewInlineCommentComponent.vue
@@ -6,6 +6,7 @@
6
style="border-color: rgb(82, 11, 189)"
7
>
8
<comment-editor
9
+ comment-type="InlineComment"
10
v-bind="props"
11
@submit="$emit('submit')"
12
@cancel="$emit('cancel')"
@@ -20,7 +21,7 @@ const props = defineProps({
20
21
commentType: {
22
type: String,
23
required: false,
- default: null
24
+ default: "InlineComment"
25
},
26
parent: {
27
type: Object,
client/src/components/forms/CommentEditor.vue
@@ -113,7 +113,7 @@ const props = defineProps({
113
114
115
116
+ default: ""
117
118
119
0 commit comments