summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-06-25 15:52:53 +0000
committerFilipa Lacerda <filipa@gitlab.com>2019-06-25 15:52:53 +0000
commit05079d3340ae3cfb838f5c99f0c3782e222b4d80 (patch)
tree95f9ec2b2d4a282c644e11a32af28b2ce3b9c6c4
parent8d10afb5ca4f1f8b68c3ba8a4d5db9ddc37d658f (diff)
parent8f0e1204cc672e69b133684e8084c2d1e5aabf34 (diff)
downloadgitlab-ce-05079d3340ae3cfb838f5c99f0c3782e222b4d80.tar.gz
Merge branch 'ce-mw-onboarding-tour-project-creation' into 'master'
(CE Port) Set project path on localStorage during onboarding See merge request gitlab-org/gitlab-ce!29989
-rw-r--r--app/views/projects/new.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml
index d7e16dbd40c..1cfe302fdc7 100644
--- a/app/views/projects/new.html.haml
+++ b/app/views/projects/new.html.haml
@@ -46,11 +46,11 @@
= render_if_exists 'projects/new_ci_cd_only_project_tab', active_tab: active_tab
.tab-content.gitlab-tab-content
- .tab-pane{ id: 'blank-project-pane', class: active_when(active_tab == 'blank'), role: 'tabpanel' }
+ .tab-pane.js-toggle-container{ id: 'blank-project-pane', class: active_when(active_tab == 'blank'), role: 'tabpanel' }
= form_for @project, html: { class: 'new_project' } do |f|
= render 'new_project_fields', f: f, project_name_id: "blank-project-name"
- #create-from-template-pane.tab-pane.px-0.pb-0{ class: active_when(active_tab == 'template'), role: 'tabpanel' }
+ #create-from-template-pane.tab-pane.js-toggle-container.px-0.pb-0{ class: active_when(active_tab == 'template'), role: 'tabpanel' }
.card-slim.m-4.p-4
%div
- contributing_templates_url = 'https://gitlab.com/gitlab-org/project-templates/contributing'