diff --git a/src/cmd/create.rs b/src/cmd/create.rs index 8996c30..b4e0151 100644 --- a/src/cmd/create.rs +++ b/src/cmd/create.rs @@ -376,9 +376,19 @@ pub async fn create( // Confirm creation println!("\nAbout to create ticket:"); + println!("Project: {}", selected_project); + if let Some(status) = &metadata.status { + println!("Status: {}", status); + } + if let Some(assignee) = &metadata.assignee { + println!("Assignee: {}", assignee); + } + if let Some(parent) = &metadata.parent { + println!("Parent: {}", parent); + } println!("Title: {}", title); - println!("{}", description); - // println!("{}...", &description.chars().take(100).collect::()); + + println!("Description:\n{}", description); println!("\nPress Enter to continue or Ctrl+C to abort"); let mut input = String::new();