diff options
-rw-r--r-- | mumi/web/view/html.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index 43bc8e4..38ff9d8 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -374,7 +374,7 @@ failed to process associated messages.") (extract-email b))))) (define sidebar `(ul (@ (id "sidebar") - (class "sticky-top flex-column")) + (class "sticky-top flex-column")) ,(map (match-lambda ((message-number message) `(li @@ -515,7 +515,8 @@ failed to process associated messages.") (button (@ (class "btn btn-primary") (type "submit")) "Send") - (span (@ (class "ml-3")) + (span + (@ (class "ml-3")) "You may also " (a (@ (href ,(string-append "mailto:" (number->string id) "@" (%config 'debbugs-domain) |