Welcome to mirror list, hosted at ThFree Co, Russian Federation.

builds_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3aaff9140de0e7122030504b2028b2d7c199bbc (plain)
1
2
3
4
5
6
7
8
module BuildsHelper
  def sidebar_build_class(build, current_build)
    build_class = ''
    build_class += ' active' if build == current_build
    build_class += ' retried' if build.retried?
    build_class
  end
end