diff options
author | Mayra Cabrera <mcabrera@gitlab.com> | 2019-05-27 20:10:40 +0000 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2019-05-27 20:10:40 +0000 |
commit | 871e2e1e5ffbe4e6253a52b661aac8143655cdf5 (patch) | |
tree | cf80e041bce4e41e32bf53c75d3e6b1d7e18d7a4 | |
parent | 785e55c23ee2480ef90510dcf63b5a7a2c6fe9ce (diff) | |
parent | 8025a3e79dc0c5f68b03fa383934db91d1d5661a (diff) | |
download | gitlab-ce-871e2e1e5ffbe4e6253a52b661aac8143655cdf5.tar.gz |
Merge branch 'patch-64' into 'master'
Remove `docker pull` prefix when copying a tag from the registry
Closes #46660
See merge request gitlab-org/gitlab-ce!28757
-rw-r--r-- | app/views/projects/registry/repositories/_tag.html.haml | 2 | ||||
-rw-r--r-- | changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app/views/projects/registry/repositories/_tag.html.haml b/app/views/projects/registry/repositories/_tag.html.haml index a4cde53e8c6..9594c9184a2 100644 --- a/app/views/projects/registry/repositories/_tag.html.haml +++ b/app/views/projects/registry/repositories/_tag.html.haml @@ -1,7 +1,7 @@ %tr.tag %td = escape_once(tag.name) - = clipboard_button(text: "docker pull #{tag.location}") + = clipboard_button(text: "#{tag.location}") %td - if tag.revision %span.has-tooltip{ title: "#{tag.revision}" } diff --git a/changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml b/changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml new file mode 100644 index 00000000000..e954b97f05b --- /dev/null +++ b/changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml @@ -0,0 +1,5 @@ +--- +title: Remove `docker pull` prefix when copying a tag from the registry +merge_request: 28757 +author: Benedikt Franke +type: changed |