summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Franke <benedikt@franke.tech>2019-05-27 20:10:39 +0000
committerMayra Cabrera <mcabrera@gitlab.com>2019-05-27 20:10:39 +0000
commit8025a3e79dc0c5f68b03fa383934db91d1d5661a (patch)
treecf80e041bce4e41e32bf53c75d3e6b1d7e18d7a4
parent785e55c23ee2480ef90510dcf63b5a7a2c6fe9ce (diff)
downloadgitlab-ce-8025a3e79dc0c5f68b03fa383934db91d1d5661a.tar.gz
Update changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml
-rw-r--r--app/views/projects/registry/repositories/_tag.html.haml2
-rw-r--r--changelogs/unreleased/28757-remove-docker-pull-prefix-when-copying-a-tag-from-the-registry.yml5
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