Add a couple of features #13

Merged
seb merged 7 commits from couple-of-usability-features into main 2025-07-09 10:20:11 -06:00
Showing only changes of commit 400e0ca26f - Show all commits

View file

@ -100,7 +100,12 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
println!("{:?}:", state);
for uuid in these_uuids {
let issue = issues.issues.get(*uuid).unwrap();
println!("{} {}", uuid, issue.title());
let num_comments = issue.comments.len();
if num_comments == 0 {
println!("{} {}", uuid, issue.title());
} else {
println!("{} 🗩 {} {}", uuid, num_comments, issue.title());
}
}
println!("");
}