diff options
Diffstat (limited to 'apps/comments/src/components/Comment.vue')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index e8ae9a88e77..a5b72efb74b 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -111,6 +111,7 @@ <script> import { getCurrentUser } from '@nextcloud/auth' +import { translate as t } from '@nextcloud/l10n' import moment from '@nextcloud/moment' import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js' @@ -235,6 +236,8 @@ export default { }, methods: { + t, + /** * Update local Message on outer change * @@ -279,7 +282,7 @@ $comment-padding: 10px; .comment { display: flex; - gap: 16px; + gap: 8px; padding: 5px $comment-padding; &__side { |