cli: Add blank line after issue reply header

This patch adds a blank line to seperate the issue reply header from the
issue reply payload.

This makes visually parsing the output easier.

Co-authored-by: Fintan Halpenny <fintan.halpenny@gmail.com>
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2026-02-13 14:29:55 +01:00 committed by Fintan Halpenny
parent 1b986af006
commit ff85c74eaa
2 changed files with 3 additions and 0 deletions

View File

@ -98,9 +98,11 @@ $ rad issue show d87dcfe8c2b3200e78b128d9b959cfdf7063fefe
│ Flux capacitor power requirements exceed current supply │ │ Flux capacitor power requirements exceed current supply │
├─────────────────────────────────────────────────────────┤ ├─────────────────────────────────────────────────────────┤
│ alice (you) now 2193e87 │ │ alice (you) now 2193e87 │
│ │
│ The flux capacitor needs 1.21 Gigawatts │ │ The flux capacitor needs 1.21 Gigawatts │
├─────────────────────────────────────────────────────────┤ ├─────────────────────────────────────────────────────────┤
│ alice (you) now 880fdcd │ │ alice (you) now 880fdcd │
│ │
│ More power! │ │ More power! │
╰─────────────────────────────────────────────────────────╯ ╰─────────────────────────────────────────────────────────╯
``` ```

View File

@ -123,6 +123,7 @@ pub fn show(
widget = widget.divider(); widget = widget.divider();
widget.push(hstack); widget.push(hstack);
widget.push(radicle_term::Label::blank());
widget.push(term::textarea(comment.body()).wrap(60)); widget.push(term::textarea(comment.body()).wrap(60));
} }
} }