Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-27 21:20:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-27 21:20:35 +0300
commitfbcf5b688d3133065705b24b73330f9b9bf19181 (patch)
tree5d640c9c862feaa1ad3399fb8277c32ff70834e3 /app/assets/javascripts/vue_shared/components/notes
parente8aa488899554f5fe4413779f485583d691fd5a8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/notes')
-rw-r--r--app/assets/javascripts/vue_shared/components/notes/noteable_warning.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/vue_shared/components/notes/noteable_warning.vue b/app/assets/javascripts/vue_shared/components/notes/noteable_warning.vue
index 78a7fed6293..9ea04553536 100644
--- a/app/assets/javascripts/vue_shared/components/notes/noteable_warning.vue
+++ b/app/assets/javascripts/vue_shared/components/notes/noteable_warning.vue
@@ -2,7 +2,7 @@
import { GlLink, GlIcon, GlSprintf } from '@gitlab/ui';
import { __, sprintf } from '~/locale';
-const NoteableTypeText = {
+const noteableTypeText = {
Issue: __('issue'),
Epic: __('epic'),
MergeRequest: __('merge request'),
@@ -53,7 +53,7 @@ export default {
return this.isConfidential && this.isLocked;
},
noteableTypeText() {
- return NoteableTypeText[this.noteableType];
+ return noteableTypeText[this.noteableType];
},
confidentialContextText() {
return sprintf(__('This is a confidential %{noteableTypeText}.'), {