Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/registry')
-rw-r--r--app/controllers/projects/registry/tags_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/registry/tags_controller.rb b/app/controllers/projects/registry/tags_controller.rb
index aab130787e9..138f9d14ee1 100644
--- a/app/controllers/projects/registry/tags_controller.rb
+++ b/app/controllers/projects/registry/tags_controller.rb
@@ -6,10 +6,10 @@ module Projects
def destroy
if tag.delete
redirect_to project_container_registry_path(@project),
- notice: 'Tag removed successfull!'
+ notice: 'Registry tag has been removed successfully!'
else
redirect_to project_container_registry_path(@project),
- alert: 'Failed to remove repository tag!'
+ alert: 'Failed to remove registry tag!'
end
end