Handle derivations with no known build
When displaying build stats.
This commit is contained in:
parent
89e34f3df8
commit
ff433dfce6
1 changed files with 6 additions and 3 deletions
|
|
@ -1179,9 +1179,12 @@ figure {
|
||||||
`(tr
|
`(tr
|
||||||
(td ,(build-status-span status))
|
(td ,(build-status-span status))
|
||||||
,@(map (lambda (id)
|
,@(map (lambda (id)
|
||||||
`(td ,(or (assq-ref counts-by-build-server-id
|
`(td ,(if (string-null? status)
|
||||||
id)
|
(assq-ref counts-by-build-server-id
|
||||||
0)))
|
#f)
|
||||||
|
(or (assq-ref counts-by-build-server-id
|
||||||
|
id)
|
||||||
|
0))))
|
||||||
(map cdr build-server-options)))))
|
(map cdr build-server-options)))))
|
||||||
stats)))))
|
stats)))))
|
||||||
(div
|
(div
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue