diff options
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Main.hs b/app/Main.hs index cc8bde3..f48d824 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -166,9 +166,7 @@ showMatches issues = do P.vsep ( concat [ [P.annotate P.bold (P.pretty issue.title)], - if not (T.null issue.description) - then [P.pretty issue.description] - else [], + maybe [] ((: []) . P.pretty) issue.description, map ( \(I.Tag k v) -> P.annotate (P.colorDull P.Yellow) $ |