summaryrefslogtreecommitdiffstats
path: root/apps/comments/src/components
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-10-20 14:24:01 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-10-20 18:02:45 +0200
commit6cd7549509f534efbdb2736a15f145dacd0223f8 (patch)
tree13e092fa3d90918bce0f6a81ba7368165e3b7888 /apps/comments/src/components
parent3e1916080af3ec2bc2fb7fd64f127cbd0c9b8a76 (diff)
downloadnextcloud-server-6cd7549509f534efbdb2736a15f145dacd0223f8.tar.gz
nextcloud-server-6cd7549509f534efbdb2736a15f145dacd0223f8.zip
Bump @nextcloud/vue to 3.0.0
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/comments/src/components')
-rw-r--r--apps/comments/src/components/Comment.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue
index acacb156f75..edcaeafb7b6 100644
--- a/apps/comments/src/components/Comment.vue
+++ b/apps/comments/src/components/Comment.vue
@@ -67,7 +67,10 @@
<!-- Message editor -->
<div class="comment__message" v-if="editor || editing">
- <RichContenteditable v-model="localMessage" :auto-complete="autoComplete" :contenteditable="!loading" />
+ <RichContenteditable v-model="localMessage"
+ :auto-complete="autoComplete"
+ :contenteditable="!loading"
+ @submit="onSubmit" />
<input v-tooltip="t('comments', 'Post comment')"
:class="loading ? 'icon-loading-small' :'icon-confirm'"
class="comment__submit"