diff options
author | Donald Cook <dcook@gitlab.com> | 2019-07-13 06:45:42 -0500 |
---|---|---|
committer | Donald Cook <dcook@gitlab.com> | 2019-07-15 17:51:16 -0500 |
commit | 266ab9e2abcf39e59abe83ab461a40a955bc1174 (patch) | |
tree | e23b023a510a032940663b9755b8a872a4ec115d | |
parent | cf7ed7e5f6e39766e75da7ed70e7b8d21394a2c9 (diff) | |
download | gitlab-ce-telemetry-37-bug-with-snowplow-structured-events.tar.gz |
Fixed difference from EEtelemetry-37-bug-with-snowplow-structured-events
-rw-r--r-- | app/views/projects/_new_project_fields.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/_new_project_fields.html.haml b/app/views/projects/_new_project_fields.html.haml index c60b98b48fe..5d88be0925e 100644 --- a/app/views/projects/_new_project_fields.html.haml +++ b/app/views/projects/_new_project_fields.html.haml @@ -54,7 +54,7 @@ .form-group.row.initialize-with-readme-setting %div{ :class => "col-sm-12" } .form-check - = check_box_tag 'project[initialize_with_readme]', '1', false, class: 'form-check-input qa-initialize-with-readme-checkbox', data: { track_label: "#{track_label}", track_event: "activate_form_input", track_property: "init_with_readme" } + = check_box_tag 'project[initialize_with_readme]', '1', false, class: 'form-check-input qa-initialize-with-readme-checkbox', data: { track_label: "#{track_label}", track_event: "activate_form_input", track_property: "init_with_readme", track_value: "" } = label_tag 'project[initialize_with_readme]', class: 'form-check-label' do .option-title %strong= s_('ProjectsNew|Initialize repository with a README') |