From 9c18c90505e95233ac8cb2a77cef4ccb54776ead Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 17 Jun 2019 11:21:36 +0100 Subject: Fix indicating if a revision is queued for processing --- guix-data-service/web/view/html.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 03bd9b1..fbd3241 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -1420,9 +1420,11 @@ (h1 "Unknown revision") (p "No known revision with commit " (strong (samp ,commit-hash)) - ,(if job - " and it is not currently queued for processing" - " but it is queued for processing")))))) + ,(match job + (() + " and it is not currently queued for processing") + ((job) + " but it is queued for processing"))))))) (define (compare-unknown-commit base-commit target-commit base-exists? target-exists? -- cgit v1.2.3