/failed-builds: special case no failed builds
🥳
This commit is contained in:
parent
a355b6124d
commit
e9f6e1d577
1 changed files with 18 additions and 11 deletions
|
@ -943,7 +943,14 @@ let failed_builds ~start ~count builds =
|
||||||
]
|
]
|
||||||
in
|
in
|
||||||
layout ~title:"Failed builds"
|
layout ~title:"Failed builds"
|
||||||
([
|
(match builds with
|
||||||
|
| [] ->
|
||||||
|
[
|
||||||
|
H.h1 [H.txt "No failed builds to list"];
|
||||||
|
H.p [H.txt "🥳"];
|
||||||
|
]
|
||||||
|
| _ :: _ ->
|
||||||
|
[
|
||||||
H.h1 [H.txt "Failed builds"];
|
H.h1 [H.txt "Failed builds"];
|
||||||
H.ul (List.map build builds);
|
H.ul (List.map build builds);
|
||||||
H.p [ txtf "View the next %d failed builds " count;
|
H.p [ txtf "View the next %d failed builds " count;
|
||||||
|
|
Loading…
Reference in a new issue