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 <annabel.dunstone@gmail.com>2016-08-17 18:20:46 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-08-17 18:20:46 +0300
commitbfe2259bb76b320bd148de4fbdcebfd1b70a59ba (patch)
tree20228882662617a85ef48b19566eddcbeafe482f /app/helpers/ci_status_helper.rb
parent4e66551a6614283f5b085a523bdbfbc552edb976 (diff)
Update CSS selector and play icon
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r--app/helpers/ci_status_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index eb385d58e3b..94df7d131ca 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -39,14 +39,14 @@ module CiStatusHelper
when 'running'
'icon_status_running'
when 'play'
- 'play'
+ return icon('play fw')
when 'created'
'icon_status_pending'
else
'icon_status_cancel'
end
- status == 'play' ? icon(icon_name + ' fw') : custom_icon(icon_name)
+ custom_icon(icon_name)
end
def render_commit_status(commit, tooltip_placement: 'auto left')