Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
cli: Add blank line after issue reply header
Matthias Beyer committed 1 month ago
commit ff85c74eaa2f4d01382fe90ab0525ec78f72b04c
parent 1b986af
2 files changed +3 -0
modified crates/radicle-cli/examples/rad-issue.md
@@ -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!                                             │
╰─────────────────────────────────────────────────────────╯
```
modified crates/radicle-cli/src/terminal/issue.rs
@@ -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));
        }
    }