summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorHeinrich Lee Yu <heinrich@gitlab.com>2019-04-03 10:00:18 +0800
committerHeinrich Lee Yu <heinrich@gitlab.com>2019-04-03 10:00:18 +0800
commitc17b7afa0298beb3290d46ad504f0f4dc4508d7a (patch)
treeba075043778ce9b090ecc4e58225aeb62766ec5e /app/assets
parent645303c7e71d554c3ee1a338730d8b779c47acc1 (diff)
downloadgitlab-ce-c17b7afa0298beb3290d46ad504f0f4dc4508d7a.tar.gz
Remove reply_to_individual_notes feature flag58644-remove-reply_to_individual_notes-feature-flag
Also removes specs related to the flag
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/notes/components/note_actions.vue5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/assets/javascripts/notes/components/note_actions.vue b/app/assets/javascripts/notes/components/note_actions.vue
index fc73726857d..aabb77f6a85 100644
--- a/app/assets/javascripts/notes/components/note_actions.vue
+++ b/app/assets/javascripts/notes/components/note_actions.vue
@@ -86,9 +86,6 @@ export default {
},
computed: {
...mapGetters(['getUserDataByProp']),
- showReplyButton() {
- return gon.features && gon.features.replyToIndividualNotes && this.showReply;
- },
shouldShowActionsDropdown() {
return this.currentUserId && (this.canEdit || this.canReportAsAbuse);
},
@@ -167,7 +164,7 @@ export default {
</a>
</div>
<reply-button
- v-if="showReplyButton"
+ v-if="showReply"
ref="replyButton"
class="js-reply-button"
@startReplying="$emit('startReplying')"