diff --git a/radicle-cli/src/commands/patch/show.rs b/radicle-cli/src/commands/patch/show.rs index 6c078dff..2a4a7c9c 100644 --- a/radicle-cli/src/commands/patch/show.rs +++ b/radicle-cli/src/commands/patch/show.rs @@ -70,11 +70,10 @@ pub fn run( let meta = VStack::default() .border(Some(term::colors::FAINT)) .child(attrs) - .blank() .children(if !description.is_empty() { - Some(label(term::format::dim(description))) + vec![term::Label::blank(), label(term::format::dim(description))] } else { - None + vec![] }); meta.print();