ent show: show dependencies, if any
This commit is contained in:
parent
bd41704906
commit
b789a3d293
1 changed files with 4 additions and 1 deletions
|
|
@ -77,7 +77,10 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
|
|||
match issues.issues.get(issue_id) {
|
||||
Some(issue) => {
|
||||
println!("issue {}", issue_id);
|
||||
println!("state {:?}", issue.state);
|
||||
println!("state: {:?}", issue.state);
|
||||
if let Some(dependencies) = &issue.dependencies {
|
||||
println!("dependencies: {:?}", dependencies);
|
||||
}
|
||||
println!("");
|
||||
println!("{}", issue.description);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue