diff options
author | Christopher Baines <mail@cbaines.net> | 2023-03-12 21:33:19 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-03-12 21:33:19 +0000 |
commit | 547d92bcdab25e826cdb68fe115f789ee9253c3b (patch) | |
tree | aeda9c438092d85af7df729b8cc749eaeaefe880 /guix-qa-frontpage/view | |
parent | 50ddc7c2db3f7f4ff11c5505c4e32e257e0d4762 (diff) | |
download | qa-frontpage-547d92bcdab25e826cdb68fe115f789ee9253c3b.tar qa-frontpage-547d92bcdab25e826cdb68fe115f789ee9253c3b.tar.gz |
Remove links from the table on the issue page
They Guix Data Service pages don't directly match up with the numbers in the
table.
Diffstat (limited to 'guix-qa-frontpage/view')
-rw-r--r-- | guix-qa-frontpage/view/issue.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/guix-qa-frontpage/view/issue.scm b/guix-qa-frontpage/view/issue.scm index 186797e..f4ec4e9 100644 --- a/guix-qa-frontpage/view/issue.scm +++ b/guix-qa-frontpage/view/issue.scm @@ -276,10 +276,7 @@ td.bad { ,(if (> (count 'target 'failing) (count 'base 'failing)) `(td (@ (class "bad")) - (a (@ (href ,(package-derivations-comparison-link - system - #:build-change "broken"))) - ,(count 'target 'failing))) + ,(count 'target 'failing)) `(td ,(count 'target 'failing))) ,(if (> (count 'target 'blocked) (count 'base 'blocked)) @@ -289,10 +286,7 @@ td.bad { ,(if (> (count 'target 'unknown) (count 'base 'unknown)) `(td (@ (class "bad")) - (a (@ (href ,(package-derivations-comparison-link - system - #:build-change "unknown"))) - ,(count 'target 'unknown))) + ,(count 'target 'unknown)) `(td ,(count 'target 'unknown))) (td (a (@ (href ,(package-derivations-comparison-link system))) |