diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-06-15 20:36:22 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-06-15 20:36:22 +0000 |
commit | 1af4ae33b42d3c2957617af4ac4a761d4b0411ba (patch) | |
tree | 8236c36aadf48b04f51568744e43e37d21b9b327 /app | |
parent | 995a59314e73de68e48716572b8de3ecd0cbae40 (diff) | |
parent | 30bf8dcc144784a3f8bc37b3a98bf8e393d05953 (diff) | |
download | gitlab-ce-1af4ae33b42d3c2957617af4ac4a761d4b0411ba.tar.gz |
Merge branch '17804-pipeline-download-text' into 'master'
#17804 Pipeline download artifacts text
## What does this MR do?
Improves wording to the pipeline artifacts download dropdown items.
## Are there points in the code the reviewer needs to double check?
I couldn't test this very easily, any tips?
## Why was this MR needed?
UX.
## What are the relevant issue numbers?
Closes #17804.
## Screenshots (if relevant)
See merge request !4391
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/ci/pipelines/_pipeline.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml index a0ffa065067..b8d8758fd2b 100644 --- a/app/views/projects/ci/pipelines/_pipeline.html.haml +++ b/app/views/projects/ci/pipelines/_pipeline.html.haml @@ -60,7 +60,7 @@ %li = link_to download_namespace_project_build_artifacts_path(@project.namespace, @project, build), rel: 'nofollow' do = icon("download") - %span #{build.name} + %span Download '#{build.name}' artifacts - if can?(current_user, :update_pipeline, @project) - if pipeline.retryable? |