in src/BuildHistoryDisplay.js [487:518]
function result_icon(result) {
if (is_success(result))
return (
<span role="img" style={{ color: "green" }} aria-label="passed">
0
</span>
);
if (is_failure(result))
return (
<span role="img" style={{ color: "red" }} aria-label="failed">
X
</span>
);
if (is_aborted(result))
return (
<span role="img" style={{ color: "gray" }} aria-label="cancelled">
.
</span>
);
if (is_pending(result))
return (
<span
className="animate-flicker"
role="img"
style={{ color: "goldenrod" }}
aria-label="in progress"
>
?
</span>
);
return result;
}