remove \t from subjects (#141)

This commit is contained in:
Clément DOUIN
2021-05-04 12:18:36 +02:00
parent 9ea84be081
commit 9ba0c75c58
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -44,7 +44,8 @@ impl Cell {
styles: Vec::new(),
value: String::from(value.as_ref())
.replace("\r", "")
.replace("\n", ""),
.replace("\n", "")
.replace("\t", ""),
shrinkable: false,
}
}