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:
parent
1b986af006
commit
ff85c74eaa
|
|
@ -98,9 +98,11 @@ $ rad issue show d87dcfe8c2b3200e78b128d9b959cfdf7063fefe
|
|||
│ Flux capacitor power requirements exceed current supply │
|
||||
├─────────────────────────────────────────────────────────┤
|
||||
│ alice (you) now 2193e87 │
|
||||
│ │
|
||||
│ The flux capacitor needs 1.21 Gigawatts │
|
||||
├─────────────────────────────────────────────────────────┤
|
||||
│ alice (you) now 880fdcd │
|
||||
│ │
|
||||
│ More power! │
|
||||
╰─────────────────────────────────────────────────────────╯
|
||||
```
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ pub fn show(
|
|||
|
||||
widget = widget.divider();
|
||||
widget.push(hstack);
|
||||
widget.push(radicle_term::Label::blank());
|
||||
widget.push(term::textarea(comment.body()).wrap(60));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue