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/views
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-11-27 20:58:27 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-11-27 20:58:27 +0300
commita99f342b4231659d39b9a145acc3652f3de3bce8 (patch)
tree096b376fac6ccd6519f1e60720ba67d56e1bef75 /app/views
parentd0b529d17a507709467cc75c607c19d465f9852d (diff)
parent50e21a89a0009813b9f090288b22c64c5cefbd58 (diff)
Merge branch 'issuable-suggestions' into 'master'
Suggest issues when typing title Closes #22071 See merge request gitlab-org/gitlab-ce!22866
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/issuable/_form.html.haml2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/shared/issuable/_form.html.haml b/app/views/shared/issuable/_form.html.haml
index b33c758b464..1618655182c 100644
--- a/app/views/shared/issuable/_form.html.haml
+++ b/app/views/shared/issuable/_form.html.haml
@@ -17,6 +17,8 @@
= render 'shared/issuable/form/template_selector', issuable: issuable
= render 'shared/issuable/form/title', issuable: issuable, form: form, has_wip_commits: commits && commits.detect(&:work_in_progress?)
+- if Feature.enabled?(:issue_suggestions) && Feature.enabled?(:graphql)
+ #js-suggestions{ data: { project_path: @project.full_path } }
= render 'shared/form_elements/description', model: issuable, form: form, project: project