add notarizing
Some checks are pending
Build Electron App / build (macos-latest, build:mac) (push) Waiting to run
Build Electron App / build (ubuntu-latest, build:linux) (push) Waiting to run
Build Electron App / build (windows-latest, build:win) (push) Waiting to run

This commit is contained in:
nicwands
2026-03-02 12:44:32 -05:00
parent 2609d73bbd
commit cc3ba79df0
2 changed files with 1 additions and 3 deletions

View File

@@ -71,6 +71,7 @@ const updateTitle = _debounce(async (editor) => {
onMounted(async () => {
const note = await loadNote(id)
console.log(note)
lastTitle = note.title
editor.value = new Editor({
@@ -90,11 +91,9 @@ onMounted(async () => {
}
},
}),
Markdown.configure({}),
Image,
],
content: note.content,
contentType: 'markdown',
onUpdate: updateNote,
})
})