fix finding single note by label with mixed case

This commit is contained in:
zadam
2021-10-08 22:13:39 +02:00
parent a08690b123
commit 20696aa0ab
5 changed files with 17 additions and 5 deletions

View File

@@ -33,7 +33,8 @@ export default class EditedNotesWidget extends CollapsibleWidget {
getTitle() {
return {
show: this.isEnabled(),
activate: true,
// promoted attributes have priority over edited notes
activate: this.note.getPromotedDefinitionAttributes().length === 0,
title: 'Edited Notes',
icon: 'bx bx-calendar-edit'
};