aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-10-05 10:30:29 +0200
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-10-05 10:46:55 +0200
commit6b76050f758917cf3552c20f99a4bfedd66049f2 (patch)
tree465be9bfbacacb40b1454b53fcd084e19397aca4 /app/Issue
parent16da8a1ea6187f4bd5ef176f2aed64403b111c8c (diff)
show single issue by id only
Diffstat (limited to 'app/Issue')
-rw-r--r--app/Issue/Filter.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Issue/Filter.hs b/app/Issue/Filter.hs
index 0ce945d..717fa8d 100644
--- a/app/Issue/Filter.hs
+++ b/app/Issue/Filter.hs
@@ -4,7 +4,7 @@
module Issue.Filter
( Filter,
- filterOption,
+ filterArg,
applyFilter,
)
where
@@ -21,8 +21,8 @@ data Filter
| IncludeByTag Text (Maybe Text)
deriving (Show)
-filterOption :: O.Parser [Filter]
-filterOption =
+filterArg :: O.Parser [Filter]
+filterArg =
O.many
( O.option
(O.maybeReader (parse . T.pack))