diff options
| author | Simon Knox <psimyn@gmail.com> | 2017-11-27 16:39:28 +1100 |
|---|---|---|
| committer | Simon Knox <psimyn@gmail.com> | 2017-11-29 00:44:01 +1100 |
| commit | 82bf8f4d13a8a61988f65f045b091bfc6502e7d7 (patch) | |
| tree | c19398a2fea1460dea01bad0987ccc013d0d43c8 /app | |
| parent | 0315803bc6da2185010f5ff6e60d44f6df059960 (diff) | |
| download | gitlab-ce-diff-note.tar.gz | |
fix lintdiff-note
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/javascripts/diff_notes/components/diff_note_avatars.vue | 3 |
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 ''; |
