diff options
author | Christopher Baines <mail@cbaines.net> | 2024-05-15 11:23:59 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-15 11:23:59 +0100 |
commit | 4eb1b4cab224306ef075b6bc0f603b9746938552 (patch) | |
tree | c0ce62f5b56710ed4c87809daf88f29d42b96401 /guix-qa-frontpage | |
parent | 2ba8159e5f53b0d257c94db4f2ccb76c51c37048 (diff) | |
download | qa-frontpage-4eb1b4cab224306ef075b6bc0f603b9746938552.tar qa-frontpage-4eb1b4cab224306ef075b6bc0f603b9746938552.tar.gz |
Show the branch on the patches page
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/view/patches.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guix-qa-frontpage/view/patches.scm b/guix-qa-frontpage/view/patches.scm index 7fb7361..dc0af45 100644 --- a/guix-qa-frontpage/view/patches.scm +++ b/guix-qa-frontpage/view/patches.scm @@ -129,5 +129,9 @@ will appear first.") (@ (style "vertical-align: middle;")) ,(status->issue-status-span status)) (td (@ (style "text-align: left;")) + ,@(let ((branch (assq-ref details 'branch))) + (if (string=? branch "master") + '() + `((code ,branch)))) ,(assoc-ref details "name")))))) latest-series))))))) |