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:
authorSam Rose <sam@gitlab.com>2017-01-01 17:04:30 +0300
committerSam Rose <sam@gitlab.com>2017-01-16 15:55:20 +0300
commit3f2eaaa26b68a61c506f847c8f56d7411058da7f (patch)
treed514cf4e15ee4efb35fbaab9dd32da3092d4f67a /app/serializers/build_action_entity.rb
parent4b43126d08972c201551fbd1fe42e85847d5e03f (diff)
Retain original casing for build name in manual pipeline dropdown
Diffstat (limited to 'app/serializers/build_action_entity.rb')
-rw-r--r--app/serializers/build_action_entity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/serializers/build_action_entity.rb b/app/serializers/build_action_entity.rb
index 3e72892d584..184f5fd4b52 100644
--- a/app/serializers/build_action_entity.rb
+++ b/app/serializers/build_action_entity.rb
@@ -2,7 +2,7 @@ class BuildActionEntity < Grape::Entity
include RequestAwareEntity
expose :name do |build|
- build.name.humanize
+ build.name
end
expose :path do |build|