Fix property name

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2023-11-16 14:16:28 +01:00
parent 75284bcf69
commit 6eb182af9d
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
3 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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)"

View File

@ -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)"