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:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-10-14 17:20:55 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-10-18 16:29:29 +0300
commit2115c360d0e096ca945bb2a39862ae8d14abfa4f (patch)
treec8e6d5da957ddb4fbe22582f93c902525212fe2f /app/helpers
parent0bd525005ba279eae2733c0c68df280e4fb25b70 (diff)
Remove unnecessary retried check & fix test failures
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/builds_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/helpers/builds_helper.rb b/app/helpers/builds_helper.rb
index b2004b99961..f3aaff9140d 100644
--- a/app/helpers/builds_helper.rb
+++ b/app/helpers/builds_helper.rb
@@ -3,5 +3,6 @@ module BuildsHelper
build_class = ''
build_class += ' active' if build == current_build
build_class += ' retried' if build.retried?
+ build_class
end
end