Skip to content

Commit

Permalink
Fix property name
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Nov 16, 2023
1 parent 75284bc commit 6eb182a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/comments/src/views/ActivityCommentAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion apps/comments/src/views/ActivityCommentEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
4 changes: 2 additions & 2 deletions apps/comments/src/views/Comments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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)"
Expand Down

0 comments on commit 6eb182a

Please sign in to comment.