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
path: root/app
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2018-04-30 14:39:30 +0300
committerMario de la Ossa <mariodelaossa@gmail.com>2018-05-04 20:33:10 +0300
commitcfa92112d189dce1028bce7145a5cbe609c389a8 (patch)
tree9f405161a3c76a5ca127890ec815ad6ec9e304f9 /app
parent5c2078838bb9de710f9025513c4b6ec664bba313 (diff)
Enable quick support actions default
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/notes/components/comment_form.vue7
1 files changed, 1 insertions, 6 deletions
diff --git a/app/assets/javascripts/notes/components/comment_form.vue b/app/assets/javascripts/notes/components/comment_form.vue
index 3381975da2b..48642c4a086 100644
--- a/app/assets/javascripts/notes/components/comment_form.vue
+++ b/app/assets/javascripts/notes/components/comment_form.vue
@@ -99,11 +99,6 @@ export default {
'js-note-target-reopen': !this.isOpen,
};
},
- supportQuickActions() {
- return true;
- // Disable quick actions support for Epics
- //return this.noteableType !== constants.EPIC_NOTEABLE_TYPE;
- },
markdownDocsPath() {
return this.getNotesData.markdownDocsPath;
},
@@ -360,7 +355,7 @@ Please check your network connection and try again.`;
name="note[note]"
class="note-textarea js-vue-comment-form
js-gfm-input js-autosize markdown-area js-vue-textarea"
- :data-supports-quick-actions="supportQuickActions"
+ data-supports-quick-actions="true"
aria-label="Description"
v-model="note"
ref="textarea"