This is an automated email from the git hooks/post-receive script. civodul pushed a commit to branch main in repository guix-cuirass.
The following commit(s) were added to refs/heads/main by this push: new b5ce219 js: Color failures where a dependency has failed already light red. b5ce219 is described below commit b5ce2192ebe0e31b0acbe7d0fa89e75792f979c0 Author: Danny Milosavljevic <dan...@scratchpost.org> AuthorDate: Mon Aug 12 12:16:12 2024 +0200 js: Color failures where a dependency has failed already light red. * src/static/js/cuirass.js (color): Modify. Signed-off-by: Ludovic Courtès <l...@gnu.org> --- src/static/js/cuirass.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/static/js/cuirass.js b/src/static/js/cuirass.js index 42f28f1..b09fab2 100644 --- a/src/static/js/cuirass.js +++ b/src/static/js/cuirass.js @@ -150,7 +150,9 @@ ready(() => { case 0: return '#9f9'; /* high contrast with others */ case 1: - case 2: + return 'red'; + case 2: // failed-dependency + return 'lightcoral'; case 3: case 4: return 'red';