diff options
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))) |