rad-issue: Correct formatting

This commit is contained in:
Slack Coder 2023-04-27 08:30:24 -05:00 committed by Alexis Sellier
parent 44a3a09e5c
commit b004fd8afb
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -408,7 +408,10 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
fn show_issue(issue: &issue::Issue) -> anyhow::Result<()> {
let tags: Vec<String> = issue.tags().cloned().map(|t| t.into()).collect();
let assignees: Vec<String> = issue.assigned().map(|a| term::format::did(&a).to_string()).collect();
let assignees: Vec<String> = issue
.assigned()
.map(|a| term::format::did(&a).to_string())
.collect();
let mut attrs = Table::<2, Paint<String>>::new(TableOptions {
spacing: 2,