mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
wrap note autocomplete for very long note path titles, closes #1221
This commit is contained in:
@@ -157,7 +157,7 @@ class Note {
|
||||
*/
|
||||
get flatText() {
|
||||
if (!this.flatTextCache) {
|
||||
this.flatTextCache = this.noteId + ' ' + this.type + ' ' + this.mime + ' ';
|
||||
this.flatTextCache = this.noteId + ' ' + this.type + ' ' + this.mime + ' ' + this.dateCreated.substr(0, 16) + ' ';
|
||||
|
||||
for (const branch of this.parentBranches) {
|
||||
if (branch.prefix) {
|
||||
|
||||
Reference in New Issue
Block a user