diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-01-22 09:54:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 09:54:34 +0100 |
commit | 3192b3e2f205cfcd478889c10e6b9fd6d4232df1 (patch) | |
tree | 17fe45a6ef93efb0be11faa2eefc6e6467e92a66 /apps/comments | |
parent | 9f489422b462b5d2c27981b36ec6b3509cc08d0d (diff) | |
parent | ddbe62ae405598581906f5de5ad622fab4a29f76 (diff) | |
download | nextcloud-server-3192b3e2f205cfcd478889c10e6b9fd6d4232df1.tar.gz nextcloud-server-3192b3e2f205cfcd478889c10e6b9fd6d4232df1.zip |
Merge pull request #30729 from nextcloud/dependabot/npm_and_yarn/nextcloud/eslint-config-7.0.1
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index 5bab02262aa..f22754ea201 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -36,15 +36,13 @@ show if we have a message id and current user is author --> <Actions v-if="isOwnComment && id && !loading" class="comment__actions"> <template v-if="!editing"> - <ActionButton - :close-after-click="true" + <ActionButton :close-after-click="true" icon="icon-rename" @click="onEdit"> {{ t('comments', 'Edit comment') }} </ActionButton> <ActionSeparator /> - <ActionButton - :close-after-click="true" + <ActionButton :close-after-click="true" icon="icon-delete" @click="onDeleteWithUndo"> {{ t('comments', 'Delete comment') }} |