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:
Diffstat (limited to 'app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue')
-rw-r--r--app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue13
1 files changed, 12 insertions, 1 deletions
diff --git a/app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue b/app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue
index f053f6e1d7c..e4c25f2c93a 100644
--- a/app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue
+++ b/app/assets/javascripts/work_items/components/notes/work_item_note_replying.vue
@@ -26,6 +26,11 @@ export default {
required: false,
default: '',
},
+ isInternalNote: {
+ type: Boolean,
+ required: false,
+ default: false,
+ },
},
computed: {
author() {
@@ -36,12 +41,18 @@ export default {
username: window.gon.current_username,
};
},
+ entryClass() {
+ return {
+ 'note note-wrapper note-comment being-posted': true,
+ 'internal-note': this.isInternalNote,
+ };
+ },
},
};
</script>
<template>
- <timeline-entry-item class="note note-wrapper note-comment being-posted">
+ <timeline-entry-item :class="entryClass">
<div class="timeline-avatar gl-float-left">
<gl-avatar :src="$options.constantOptions.avatarUrl" :size="32" />
</div>