summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-10-16 15:03:44 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-10-16 15:03:44 +0300
commit9449fe1744f4ce1265c42c73b977d4e138260d69 (patch)
tree1e43656db780ed0994ebfa61662f129f62d0e5fc
parent94c9dc514c54badbefb5e4e45bcf3650c0d0b83d (diff)
downloadgitlab-ce-dz-fix-group-milestone-creation.tar.gz
Fix 500 error when creating mileston from group pagedz-fix-group-milestone-creation
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/views/layouts/_init_auto_complete.html.haml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/layouts/_init_auto_complete.html.haml b/app/views/layouts/_init_auto_complete.html.haml
index 67ff4b272b9..e138ebab018 100644
--- a/app/views/layouts/_init_auto_complete.html.haml
+++ b/app/views/layouts/_init_auto_complete.html.haml
@@ -1,7 +1,8 @@
- project = @target_project || @project
- noteable_type = @noteable.class if @noteable.present?
-:javascript
- GitLab.GfmAutoComplete.dataSource = "#{autocomplete_sources_namespace_project_path(project.namespace, project, type: noteable_type, type_id: params[:id])}"
- GitLab.GfmAutoComplete.cachedData = undefined;
- GitLab.GfmAutoComplete.setup();
+- if project
+ :javascript
+ GitLab.GfmAutoComplete.dataSource = "#{autocomplete_sources_namespace_project_path(project.namespace, project, type: noteable_type, type_id: params[:id])}"
+ GitLab.GfmAutoComplete.cachedData = undefined;
+ GitLab.GfmAutoComplete.setup();