Fix a uri encoding issue with linking to outputs

This commit is contained in:
Christopher Baines 2021-06-09 10:28:01 +01:00
parent 9c1b989d20
commit f421faa790

View file

@ -683,7 +683,10 @@
,@(map (match-lambda
((output-name path hash-algorithm hash recursive?)
`(tr
(td (a (@ (href ,path))
(td (a (@ (href ,(string-join
(map uri-encode
(string-split path #\/))
"/")))
,(display-store-item-short path))))))
derivation-outputs)))))))))