From eb1ae13e68d8675e30d85fcb86666c78018e4bac Mon Sep 17 00:00:00 2001 From: cloudhead Date: Tue, 12 Mar 2024 15:46:55 +0100 Subject: [PATCH] cli: Use correct styling for revision id --- radicle-cli/src/commands/patch/checkout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle-cli/src/commands/patch/checkout.rs b/radicle-cli/src/commands/patch/checkout.rs index 9f3e3c2c..748f6b17 100644 --- a/radicle-cli/src/commands/patch/checkout.rs +++ b/radicle-cli/src/commands/patch/checkout.rs @@ -93,7 +93,7 @@ pub fn run( spinner.message(format!( "Switched to branch {} at revision {}", term::format::highlight(&patch_branch), - term::format::secondary(term::format::oid(revision_id)), + term::format::dim(term::format::oid(revision_id)), )); spinner.finish();