summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-11-16 14:16:28 +0100
committerJoas Schilling <coding@schilljs.com>2023-11-16 14:16:28 +0100
commit6eb182af9d23d522577d8390042c1508584a97a6 (patch)
tree2dc8aafd50b57f356afae38d38fe12f568f0630b
parent75284bcf6998adc70d0431f57506ed9fb1ab277b (diff)
downloadnextcloud-server-6eb182af9d23d522577d8390042c1508584a97a6.tar.gz
nextcloud-server-6eb182af9d23d522577d8390042c1508584a97a6.zip
Fix property name
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/comments/src/views/ActivityCommentAction.vue2
-rw-r--r--apps/comments/src/views/ActivityCommentEntry.vue2
-rw-r--r--apps/comments/src/views/Comments.vue4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/comments/src/views/ActivityCommentAction.vue b/apps/comments/src/views/ActivityCommentAction.vue
index 81299ec550d..1bdeca883f7 100644
--- a/apps/comments/src/views/ActivityCommentAction.vue
+++ b/apps/comments/src/views/ActivityCommentAction.vue
@@ -23,7 +23,7 @@
<template>
<Comment v-bind="editorData"
:auto-complete="autoComplete"
- :comments-type="resourceType"
+ :resource-type="resourceType"
:editor="true"
:user-data="userData"
:resource-id="resourceId"
diff --git a/apps/comments/src/views/ActivityCommentEntry.vue b/apps/comments/src/views/ActivityCommentEntry.vue
index 42e15fc7417..38fc2d5f1ef 100644
--- a/apps/comments/src/views/ActivityCommentEntry.vue
+++ b/apps/comments/src/views/ActivityCommentEntry.vue
@@ -25,7 +25,7 @@
tag="li"
v-bind="comment.props"
:auto-complete="autoComplete"
- :comments-type="resourceType"
+ :resource-type="resourceType"
:message="commentMessage"
:resource-id="resourceId"
:user-data="genMentionsData(comment.props.mentions)"
diff --git a/apps/comments/src/views/Comments.vue b/apps/comments/src/views/Comments.vue
index 89600d76dba..7936610ad12 100644
--- a/apps/comments/src/views/Comments.vue
+++ b/apps/comments/src/views/Comments.vue
@@ -28,7 +28,7 @@
<!-- Editor -->
<Comment v-bind="editorData"
:auto-complete="autoComplete"
- :comments-type="resourceType"
+ :resource-type="resourceType"
:editor="true"
:user-data="userData"
:resource-id="resourceId"
@@ -50,7 +50,7 @@
tag="li"
v-bind="comment.props"
:auto-complete="autoComplete"
- :comments-type="resourceType"
+ :resource-type="resourceType"
:message.sync="comment.props.message"
:resource-id="resourceId"
:user-data="genMentionsData(comment.props.mentions)"