diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2017-02-10 16:14:18 -0600 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2017-02-13 01:08:35 -0600 |
commit | f2aa9b463086697771e2bf936a7d272307bcbd67 (patch) | |
tree | 197ce6117a976b10aa4de647cd8e47a5576c6fc8 /app/helpers/builds_helper.rb | |
parent | b88e82ff0a1bca9687b5579208ba05a99e41a464 (diff) | |
download | gitlab-ce-f2aa9b463086697771e2bf936a7d272307bcbd67.tar.gz |
Fix current build arrow27939-fix-current-build-arrow
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27939
Diffstat (limited to 'app/helpers/builds_helper.rb')
-rw-r--r-- | app/helpers/builds_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/builds_helper.rb b/app/helpers/builds_helper.rb index 9fc69e12266..ff937b5ebd2 100644 --- a/app/helpers/builds_helper.rb +++ b/app/helpers/builds_helper.rb @@ -1,7 +1,7 @@ module BuildsHelper def sidebar_build_class(build, current_build) build_class = '' - build_class += ' active' if build == current_build + build_class += ' active' if build.id === current_build.id build_class += ' retried' if build.retried? build_class end |