mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
use electron 8 spellchecker instead of electron-spellchecker, WIP
This commit is contained in:
@@ -121,15 +121,13 @@ async function exportToTar(taskContext, branch, format, res) {
|
||||
type: note.type,
|
||||
mime: note.mime,
|
||||
// we don't export utcDateCreated and utcDateModified of any entity since that would be a bit misleading
|
||||
attributes: (await note.getOwnedAttributes()).map(attribute => {
|
||||
return {
|
||||
attributes: (await note.getOwnedAttributes()).map(attribute => ({
|
||||
type: attribute.type,
|
||||
name: attribute.name,
|
||||
value: attribute.value,
|
||||
isInheritable: attribute.isInheritable,
|
||||
position: attribute.position
|
||||
};
|
||||
})
|
||||
}))
|
||||
};
|
||||
|
||||
taskContext.increaseProgressCount();
|
||||
|
||||
Reference in New Issue
Block a user