19ee80b
@@ -53,7 +53,7 @@
return (
<span className="badge badge-success">{result}</span>
)
- if (result.startsWith("fail"))
+ if (result.startsWith("fail") || (result.startsWith("error")))
<span className="badge badge-danger">{result}</span>
lgtm
Pull-Request has been merged by frantisekz
Not that technically error and failure have different meaning, but I agree they should both be red.