Fix wording in registry tags controller notifications

This commit is contained in:
Grzegorz Bizon 2017-04-04 13:02:52 +02:00
parent cb2ce8452f
commit f60820ed03
1 changed files with 2 additions and 2 deletions

View File

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