Skip to content

Commit

Permalink
Merge pull request #6585 from dmarcoux/fix-pulse-list-builds
Browse files Browse the repository at this point in the history
Set 0 as a default value for pulse failed/succeeded builds
  • Loading branch information
Dany Marcoux committed Dec 12, 2018
2 parents 96be8cc + e039cc3 commit a5a81c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
builds in the last 24 hours
of which
%b.text-danger
= builds['build_fail']
= builds.fetch('build_fail', 0)
failed
and
%b.text-success
= builds['build_success']
= builds.fetch('build_success', 0)
succeeded
\.

0 comments on commit a5a81c2

Please sign in to comment.