diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Main.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Main.hs b/app/Main.hs index e1b4e18..086f1e6 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -663,8 +663,7 @@ main = do Nothing -> die (printf "no issue with id `%s'\n" id) Just issue -> pure issue let s = - -- TODO Hardcoded issue marker. - ("TODO " <> LT.fromStrict issue.title) + (LT.fromStrict (T.intercalate " " issue.markers) <> " " <> LT.fromStrict issue.title) <> maybe "" (("\n\n" <>) . LT.fromStrict) issue.description if edit then do |