summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2017-09-18 11:09:00 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2017-09-18 11:09:00 +0200
commit9254343117d673cdbaee3e9b0a77a1e71e391c45 (patch)
tree6eea921e79d23657354de57a1c3157e9f80aa983
parentd97b3fa478619fd6d75b25a89eff2c5bc519e1d5 (diff)
downloadgitlab-ce-fix-label-message.tar.gz
Fix notification message when admin label was modifiedfix-label-message
-rw-r--r--app/controllers/admin/labels_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/labels_controller.rb b/app/controllers/admin/labels_controller.rb
index cbc7a14ae83..7eb8f758807 100644
--- a/app/controllers/admin/labels_controller.rb
+++ b/app/controllers/admin/labels_controller.rb
@@ -29,7 +29,7 @@ class Admin::LabelsController < Admin::ApplicationController
@label = Labels::UpdateService.new(label_params).execute(@label)
if @label.valid?
- redirect_to admin_labels_path, notice: 'label was successfully updated.'
+ redirect_to admin_labels_path, notice: 'Label was successfully updated.'
else
render :edit
end