From fe5d473af7065d6aed1c7761c7c68c71e378456b Mon Sep 17 00:00:00 2001 From: cloudhead Date: Mon, 11 Sep 2023 23:35:41 +0200 Subject: [PATCH] cli: Print the identity parent in `cob show` The parent that points to the identity document commit was missing from the output. --- radicle-cli/src/commands/cob.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/radicle-cli/src/commands/cob.rs b/radicle-cli/src/commands/cob.rs index 658ce85b..3a4f71af 100644 --- a/radicle-cli/src/commands/cob.rs +++ b/radicle-cli/src/commands/cob.rs @@ -116,6 +116,7 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> { .to_rfc2822(); term::print(term::format::yellow(format!("commit {}", op.id))); + term::print(term::format::tertiary(format!("parent {}", op.identity))); for parent in op.parents { term::print(format!("parent {}", parent)); }