diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 15:06:09 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 15:06:38 +0100 |
commit | d9a26739b3f062f19d5051677fbac1526ae8747b (patch) | |
tree | 768d6151fd7b1c0460540095ee53292e868db5ef | |
parent | d9400635bcb28674c8510d71aa6eed94194bf669 (diff) |
fix hardcoded "@topic"
-rw-r--r-- | app/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 793d8a5..7604137 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -577,7 +577,7 @@ main = do P.vsep $ ( P.annotate P.bold . P.annotate (P.color P.Yellow) $ ( ( P.annotate P.bold $ - ("@topic" :: P.Doc ann) <+> P.pretty name + (("@" :: P.Doc ann) <> P.pretty groupBy) <+> P.pretty name ) <+> ("(" :: P.Doc ann) <> P.pretty (length issues) |