JournalList: Show the filename as the title when no metadata is allowed

Fixes #72
This commit is contained in:
Vishesh Handa
2020-03-01 13:14:13 +01:00
parent 78d7e6cef0
commit 6d69217cae

View File

@ -144,7 +144,7 @@ class _JournalListState extends State<JournalList> {
Widget _buildRow(BuildContext context, Note note) {
var textTheme = Theme.of(context).textTheme;
var title = note.title;
var title = note.canHaveMetadata ? note.title : note.fileName;
Widget titleWidget = Text(title, style: textTheme.title);
if (title.isEmpty) {
var date = note.modified ?? note.created ?? note.fileLastModified;