diff options
author | Christopher Baines <mail@cbaines.net> | 2024-12-08 20:03:03 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-12-09 10:53:06 +0000 |
commit | 62fc9b722502937470d9cc970541676c44a88406 (patch) | |
tree | 00771e2cce98eee0193f34fe472d2218e276b848 | |
parent | 5664cde17cfd8acbdfcea8ebe1d364ed287c9e5a (diff) | |
download | data-service-62fc9b722502937470d9cc970541676c44a88406.tar data-service-62fc9b722502937470d9cc970541676c44a88406.tar.gz |
Fix hash display for formatted derivations
-rw-r--r-- | guix-data-service/web/view/html.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 61b75f1..dd3c07f 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -723,7 +723,7 @@ (or hash-algorithm "")) "\"" "," - "\"" ,hash "\"" + "\"" ,(or hash "") "\"" ")" ,@(if (eq? count-down 0) '() |