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
This commit is contained in:
Mayra Cabrera 2019-05-27 20:10:40 +00:00
commit 871e2e1e5f
2 changed files with 6 additions and 1 deletions

View File

@ -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}" }

View File

@ -0,0 +1,5 @@
---
title: Remove `docker pull` prefix when copying a tag from the registry
merge_request: 28757
author: Benedikt Franke
type: changed