summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/diff_notes/components/diff_note_avatars.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/diff_notes/components/diff_note_avatars.vue b/app/assets/javascripts/diff_notes/components/diff_note_avatars.vue
index f341762ef13..8b47a3250aa 100644
--- a/app/assets/javascripts/diff_notes/components/diff_note_avatars.vue
+++ b/app/assets/javascripts/diff_notes/components/diff_note_avatars.vue
@@ -4,7 +4,6 @@
import Icon from '~/vue_shared/components/icon.vue';
import UserAvatarImage from '~/vue_shared/components/user_avatar/user_avatar_image.vue';
-import { n__ } from '~/locale';
export default {
props: {
@@ -73,7 +72,7 @@ export default {
},
extraNotesTitle() {
if (this.discussion) {
- return n__('%d more comment', '%d more comments', this.extraComments);
+ return this.n__('%d more comment', '%d more comments', this.extraComments);
}
return '';