diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue
index 97e3adea1a4..051815a0b9c 100644
--- a/apps/comments/src/components/Comment.vue
+++ b/apps/comments/src/components/Comment.vue
@@ -40,22 +40,27 @@
show if we have a message id and current user is author -->
@@ -87,8 +92,8 @@
:disabled="isEmptyMessage"
@click="onSubmit">
-
-
+
+
@@ -122,7 +127,11 @@ import NcActionSeparator from '@nextcloud/vue/dist/Components/NcActionSeparator.
import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import RichEditorMixin from '@nextcloud/vue/dist/Mixins/richEditor.js'
-import ArrowRight from 'vue-material-design-icons/ArrowRight.vue'
+
+import IconArrowRight from 'vue-material-design-icons/ArrowRight.vue'
+import IconClose from 'vue-material-design-icons/Close.vue'
+import IconDelete from 'vue-material-design-icons/Delete.vue'
+import IconEdit from 'vue-material-design-icons/Pencil.vue'
import Moment from './Moment.vue'
import CommentMixin from '../mixins/CommentMixin.js'
@@ -134,15 +143,19 @@ export default {
name: 'Comment',
components: {
+ IconArrowRight,
+ IconClose,
+ IconDelete,
+ IconEdit,
+ Moment,
NcActionButton,
NcActions,
NcActionSeparator,
- ArrowRight,
NcAvatar,
NcButton,
- Moment,
NcRichContenteditable,
},
+
mixins: [RichEditorMixin, CommentMixin],
inheritAttrs: false,
diff --git a/apps/comments/src/views/ActivityCommentEntry.vue b/apps/comments/src/views/ActivityCommentEntry.vue
index 38fc2d5f1ef..55af0d5bc1e 100644
--- a/apps/comments/src/views/ActivityCommentEntry.vue
+++ b/apps/comments/src/views/ActivityCommentEntry.vue
@@ -34,6 +34,7 @@