diff options
author | Christopher Baines <mail@cbaines.net> | 2023-05-12 16:25:03 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-05-12 16:25:03 +0100 |
commit | e1cee556a9b20ab1f37869cd72b89cef0e9bae07 (patch) | |
tree | d4bd1eb8524cf011f129e9dfaebf1aefa9e6b575 /guix-qa-frontpage/view | |
parent | d1eefc8c4ce0cda652de5e5edeb498826c6bd701 (diff) | |
download | qa-frontpage-e1cee556a9b20ab1f37869cd72b89cef0e9bae07.tar qa-frontpage-e1cee556a9b20ab1f37869cd72b89cef0e9bae07.tar.gz |
Use orange color for the non-master branch pages too
Diffstat (limited to 'guix-qa-frontpage/view')
-rw-r--r-- | guix-qa-frontpage/view/branch.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-qa-frontpage/view/branch.scm b/guix-qa-frontpage/view/branch.scm index 8e50806..ab881cb 100644 --- a/guix-qa-frontpage/view/branch.scm +++ b/guix-qa-frontpage/view/branch.scm @@ -69,7 +69,7 @@ td.bad { (color (cond ((> ratio 0.80) "green") ((< ratio 0.50) "red") - (else #f))) + (else "orange"))) (symbol (cond ((> ratio 0.80) '(*ENTITY* "#9788")) |