diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-03-05 19:04:42 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-03-05 19:04:42 +0000 |
| commit | f78c2f58e1da73591c782086f76a8584c0406ca5 (patch) | |
| tree | 285cb17545501a8e361f21ecc1e40a4b5fbe8ceb /src/bin/ngit/main.rs | |
| parent | bdcfc7ae0b0558843b160acc4d2c8db9996cdc60 (diff) | |
fix(issue): add --comments flag to issue list command
--comments was supported by 'issue view' but not 'issue list', making
'ngit issue list <id> --comments' fail while the equivalent 'view'
command worked fine.
Diffstat (limited to 'src/bin/ngit/main.rs')
| -rw-r--r-- | src/bin/ngit/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index a656412..215d5dd 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs | |||
| @@ -166,6 +166,7 @@ async fn main() { | |||
| 166 | status, | 166 | status, |
| 167 | labels, | 167 | labels, |
| 168 | json, | 168 | json, |
| 169 | comments, | ||
| 169 | id, | 170 | id, |
| 170 | offline, | 171 | offline, |
| 171 | } => { | 172 | } => { |
| @@ -173,7 +174,7 @@ async fn main() { | |||
| 173 | status.clone(), | 174 | status.clone(), |
| 174 | labels.clone(), | 175 | labels.clone(), |
| 175 | *json, | 176 | *json, |
| 176 | false, | 177 | *comments, |
| 177 | id.clone(), | 178 | id.clone(), |
| 178 | *offline, | 179 | *offline, |
| 179 | ) | 180 | ) |