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:
authorDesiree Chevalier <dchevalier@gitlab.com>2019-08-28 19:32:05 +0300
committerDesiree Chevalier <dchevalier@gitlab.com>2019-08-30 22:18:07 +0300
commitd3293e49e82183d96f637fd5683c5790ba4db236 (patch)
treeb6bd68fc3c06fffcd7603e4e48bb2011d85e2d19 /app
parenta0a6a2fd89bcc9bd16c9d00dee2076eb2169968e (diff)
Backport EE changes for built-in project template test
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/project_templates/_built_in_templates.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/project_templates/_built_in_templates.html.haml b/app/views/projects/project_templates/_built_in_templates.html.haml
index d1c09e83fd3..a583eb39eb3 100644
--- a/app/views/projects/project_templates/_built_in_templates.html.haml
+++ b/app/views/projects/project_templates/_built_in_templates.html.haml
@@ -1,5 +1,5 @@
- Gitlab::ProjectTemplate.all.each do |template|
- .template-option.d-flex.align-items-center
+ .template-option.d-flex.align-items-center{ data: { qa_selector: 'template_option_row' } }
.logo.append-right-10.px-1
= image_tag template.logo, size: 32, class: "btn-template-icon icon-#{template.name}"
.description
@@ -13,5 +13,5 @@
= _("Preview")
%label.btn.btn-success.template-button.choose-template.append-bottom-0{ for: template.name }
%input{ type: "radio", autocomplete: "off", name: "project[template_name]", id: template.name, value: template.name, data: { track_label: "template_use", track_property: template.name, track_event: "click_button", track_value: "" } }
- %span
+ %span{ data: { qa_selector: 'use_template_button' } }
= _("Use template")