JournalList: Remove #

They are jarring, as reported by a user.
This commit is contained in:
Vishesh Handa
2019-05-13 21:58:04 +02:00
parent 589a61c3b2
commit 0e88479db2

View File

@ -78,6 +78,8 @@ class JournalList extends StatelessWidget {
var body = journal.body;
body = body.replaceAll("\n", " ");
body = body.replaceAll("#", "");
body = body.trim();
var textTheme = Theme.of(context).textTheme;
var children = <Widget>[];