diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-11-22 13:37:23 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-11-22 13:37:23 +0100 |
commit | 6a18a78184293863eafc9b9b1a9e7fd5687a507c (patch) | |
tree | d7fb31c59339eccc8ea9d9344865183624affa7f /app/helpers/builds_helper.rb | |
parent | 07ce4c28b3c854a912a1b98d0715d0ed3f8c937d (diff) | |
download | gitlab-ce-6a18a78184293863eafc9b9b1a9e7fd5687a507c.tar.gz |
Include build trace status in data attribute always
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 fde297c588e..9662ac7e341 100644 --- a/app/helpers/builds_helper.rb +++ b/app/helpers/builds_helper.rb @@ -12,7 +12,7 @@ module BuildsHelper build_url: namespace_project_build_url(@project.namespace, @project, @build, :json), build_status: @build.status, build_stage: @build.stage, - state1: @build.trace_with_state[:state] + state1: @build.trace_with_state[:state].to_s } end end |