diff options
author | Kushal Pandya <kushalspandya@gmail.com> | 2019-01-08 12:22:25 +0000 |
---|---|---|
committer | Kushal Pandya <kushalspandya@gmail.com> | 2019-01-08 12:22:25 +0000 |
commit | e3af07648f648642dd0ff546162e08b9fbbcb077 (patch) | |
tree | 042497d69645b8046284bb38671997ce216b079c | |
parent | e2667b765426e9201dab6a004e1ded3578a70283 (diff) | |
parent | 14599cc852b08c6bbf5e96259458fa5a6f152c31 (diff) | |
download | gitlab-ce-e3af07648f648642dd0ff546162e08b9fbbcb077.tar.gz |
Merge branch '8775-track-import-issues-csv-usage-on-gitlab-com-with-snowplow' into 'master'
CE backport of "Track export issues CSV usage on GitLab.com with Snowplow"
See merge request gitlab-org/gitlab-ce!24217
-rw-r--r-- | app/views/projects/issues/import_csv/_modal.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/issues/import_csv/_modal.html.haml b/app/views/projects/issues/import_csv/_modal.html.haml index 18768307341..5339c4325b9 100644 --- a/app/views/projects/issues/import_csv/_modal.html.haml +++ b/app/views/projects/issues/import_csv/_modal.html.haml @@ -20,5 +20,5 @@ = _('It must have a header row and at least two columns: the first column is the issue title and the second column is the issue description. The separator is automatically detected.') = _('The maximum file size allowed is %{size}.') % { size: number_to_human_size(Gitlab::CurrentSettings.max_attachment_size.megabytes) } .modal-footer - %button{ type: 'submit', class: 'btn btn-success', title: _('Import issues') } + %button{ type: 'submit', class: 'btn btn-success', title: _('Import issues'), data: { track_label: "export_issues_csv", track_event: "click_button"} } = _('Import issues') |