[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: Fix another squee upgrade issue
From: |
Christopher Baines |
Subject: |
branch master updated: Fix another squee upgrade issue |
Date: |
Sun, 03 Jan 2021 04:43:49 -0500 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository data-service.
The following commit(s) were added to refs/heads/master by this push:
new e476239 Fix another squee upgrade issue
e476239 is described below
commit e4762394794e7a67b4480c7d1918a057df8a3f38
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sun Jan 3 09:43:24 2021 +0000
Fix another squee upgrade issue
---
guix-data-service/web/html-utils.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/guix-data-service/web/html-utils.scm
b/guix-data-service/web/html-utils.scm
index d38c448..ab2fa85 100644
--- a/guix-data-service/web/html-utils.scm
+++ b/guix-data-service/web/html-utils.scm
@@ -67,7 +67,8 @@
("failed-dependency" . "Failed (dependency)")
("failed-other" . "Failed (other)")
("canceled" . "Canceled")
- ("" . "Unknown"))
+ ("" . "Unknown")
+ (#f . "Unknown"))
value))
(define (build-url build-server-id build-server-build-id derivation-file-name)
@@ -110,7 +111,8 @@
("failed-dependency" . "warning")
("failed-other" . "danger")
("canceled" . "default")
- ("" . "default"))
+ ("" . "default")
+ (#f . "default"))
status)))
(style "display: inline-block; font-size: 1.2em; margin-top:
0.4em; margin-bottom: 0.4em;"))
,(build-status-value->display-string status)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: Fix another squee upgrade issue,
Christopher Baines <=