Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
merge: cli/rad issue ls --output json
WillForan committed 2 months ago
commit 1182d3f54d6d6205394002f2f47e8d755a60c24b
parent edb8b6b9c231f8c30b3aa0368ad1e83361b1894b
1 file changed +12 -0
modified crates/radicle-cli/src/commands/issue.rs
@@ -340,12 +340,24 @@ where
    });

    match output {
+
<<<<<<< HEAD
        OutputFormat::Table => {
            print_table(all);
        }
        OutputFormat::Json => {
            println!("{}", json::to_string_pretty(&all)?);
        }
+
=======
+
        Some(OutputFormat::Table) => {
+
            print_table(all);
+
        }
+
        Some(OutputFormat::Json) => {
+
            println!("{}", json::to_string_pretty(&all)?);
+
        }
+
        &None => {
+
            println!("Unknown ouptput format!");
+
        }
+
>>>>>>> cafb42e2 (merge: cli/rad issue ls --output json)
    }

    Ok(())