2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00

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.
This commit is contained in:
Christopher Baines 2019-02-25 21:42:07 +00:00
parent b8543859c9
commit fd0bf340a7
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -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))))