mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 02:07:39 +08:00
For generated titles - prefer the provided title
This commit is contained in:
@ -61,7 +61,10 @@ class StandardView extends StatelessWidget {
|
||||
break;
|
||||
|
||||
case StandardViewHeader.TitleGenerated:
|
||||
title = note.summary;
|
||||
title = note.title;
|
||||
if (title == null || title.isEmpty) {
|
||||
title = note.summary;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Reference in New Issue
Block a user