provide note dates in the frontend API, fixes #4232

This commit is contained in:
zadam
2023-09-06 22:54:31 +02:00
parent 97d8b19868
commit d2263c68f8
4 changed files with 11 additions and 16 deletions

View File

@@ -128,8 +128,8 @@ export default class NoteInfoWidget extends NoteContextAwareWidget {
.attr("title", metadata.dateCreated);
this.$dateModified
.text(metadata.combinedDateModified.substr(0, 16))
.attr("title", metadata.combinedDateModified);
.text(metadata.dateModified.substr(0, 16))
.attr("title", metadata.dateModified);
this.$type.text(note.type);