From fd0bf340a71b26af8214fd7c5e80f8ee9f0346b5 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 25 Feb 2019 21:42:07 +0000 Subject: [PATCH] Fix showing versions in the comparison Previously, some extra data from the query would be added on to the end of the version. This change prevents that from happening. --- guix-data-service/web/view/html.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 9882877..4615640 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -159,7 +159,7 @@ (tbody ,@(map (match-lambda - ((name . version) + ((name version rest ...) `(tr (td ,name) (td ,version)))) @@ -176,7 +176,7 @@ (tbody ,@(map (match-lambda - ((name . version) + ((name version rest ...) `(tr (td ,name) (td ,version))))