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
|
||||
(td ,(build-status-span status))
|
||||
,@(map (lambda (id)
|
||||
`(td ,(or (assq-ref counts-by-build-server-id
|
||||
id)
|
||||
0)))
|
||||
`(td ,(if (string-null? status)
|
||||
(assq-ref counts-by-build-server-id
|
||||
#f)
|
||||
(or (assq-ref counts-by-build-server-id
|
||||
id)
|
||||
0))))
|
||||
(map cdr build-server-options)))))
|
||||
stats)))))
|
||||
(div
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue