diff options
Diffstat (limited to 'src/bin/ngit/sub_commands/list.rs')
| -rw-r--r-- | src/bin/ngit/sub_commands/list.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/ngit/sub_commands/list.rs b/src/bin/ngit/sub_commands/list.rs index a90b28e..9e35b33 100644 --- a/src/bin/ngit/sub_commands/list.rs +++ b/src/bin/ngit/sub_commands/list.rs | |||
| @@ -219,7 +219,11 @@ pub async fn launch() -> Result<()> { | |||
| 219 | PromptChoiceParms::default() | 219 | PromptChoiceParms::default() |
| 220 | .with_prompt("this is new PR event kind which ngit doesnt yet support") | 220 | .with_prompt("this is new PR event kind which ngit doesnt yet support") |
| 221 | .with_default(0) | 221 | .with_default(0) |
| 222 | .with_choices(vec!["back to proposals".to_string()]), | 222 | .with_choices(vec![ |
| 223 | // TODO enable checkout by fetching oids, creating / updating branch and | ||
| 224 | // checking out | ||
| 225 | "back to proposals".to_string(), | ||
| 226 | ]), | ||
| 223 | )? { | 227 | )? { |
| 224 | 0 => continue, | 228 | 0 => continue, |
| 225 | _ => { | 229 | _ => { |