diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-30 03:49:39 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-30 03:49:41 +0100 |
commit | 650d139254a0e17be0b1011f2fda6ea67f903e71 (patch) | |
tree | ebfcd8606da922c536cb6414cfa816d2aa65c17f /app/History/PartialCommitInfo.hs | |
parent | ff5535f0a55201c6883c48c3892c9ef357904356 (diff) |
feat: support closed issues
Closed issues can be shown, but listing closed issues requires passing
`--closed`.
Diffstat (limited to 'app/History/PartialCommitInfo.hs')
-rw-r--r-- | app/History/PartialCommitInfo.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/History/PartialCommitInfo.hs b/app/History/PartialCommitInfo.hs index f973938..48b631e 100644 --- a/app/History/PartialCommitInfo.hs +++ b/app/History/PartialCommitInfo.hs @@ -102,7 +102,8 @@ fromComment cwd comment = do markers = markers, rawText = rawText, commentStyle = commentStyle, - comments = comments + comments = comments, + closed = False } else Nothing ) |