cli: Fix `rad issue edit`

Make the `rad issue edit` subcommand accessible to users.
This commit is contained in:
Slack Coder 2023-05-31 09:37:24 -05:00 committed by Alexis Sellier
parent 474d21741e
commit 1c9670b90f
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -195,6 +195,7 @@ impl Args for Options {
Value(val) if op.is_none() => match val.to_string_lossy().as_ref() {
"c" | "show" => op = Some(OperationName::Show),
"d" | "delete" => op = Some(OperationName::Delete),
"e" | "edit" => op = Some(OperationName::Edit),
"l" | "list" => op = Some(OperationName::List),
"o" | "open" => op = Some(OperationName::Open),
"r" | "react" => op = Some(OperationName::React),