Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
lib: Add whitespace in between issue labels
Erik Kundt committed 2 years ago
commit b3e3bb56fff9e090de4917335c8ab891ea33bbe2
parent 96a86880b99cd454d34cd8fc2c6e98eb2b89cd83
1 file changed +1 -1
modified src/ui/format.rs
@@ -59,7 +59,7 @@ pub fn labels(labels: &[Label]) -> String {
        output.push_str(&label.to_string());

        if labels.peek().is_some() {
-
            output.push(',');
+
            output.push_str(", ");
        }
    }
    output