Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
rad-issue: Correct formatting
Slack Coder committed 3 years ago
commit b004fd8afbdf176717f4e03bd9730bcf14eab8be
parent 44a3a09e5cb7ccdab0f06e91433da8c02a91534e
1 file changed +4 -1
modified radicle-cli/src/commands/issue.rs
@@ -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,