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-11-03 21:29:31 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-03 21:29:31 +0300
commit2a1d701bc6403d0038ba16f2f0e2e185b8415bb1 (patch)
tree7ec1c5d14825351bf3dc8b5262732955a475f614 /app/helpers/ci_status_helper.rb
parent651bdd7c34c9ebf686b8357d8fc3ca4d0a58792e (diff)
Add new icon for skipped builds; show created state in mini graph
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r--app/helpers/ci_status_helper.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index b7f48630bd4..fabe5c1f63a 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -47,8 +47,10 @@ module CiStatusHelper
'icon_play'
when 'created'
'icon_status_created'
+ when 'skipped'
+ 'icon_status_skipped'
else
- 'icon_status_cancel'
+ 'icon_status_canceled'
end
custom_icon(icon_name)