launchbar WIP

This commit is contained in:
zadam
2022-08-07 13:23:03 +02:00
parent 8d608c3c1c
commit fc920becac
6 changed files with 50 additions and 5 deletions

View File

@@ -347,7 +347,6 @@ function createMissingSpecialNotes() {
const parentNoteId = shortcut.isVisible ? getLaunchBarVisibleShortcutsRoot().noteId : getLaunchBarAvailableShortcutsRoot().noteId;
note = noteService.createNewNote({
branchId: shortcut.id,
noteId: shortcut.id,
title: shortcut.title,
type: 'shortcut',
@@ -383,6 +382,12 @@ function createMissingSpecialNotes() {
}
}
function createShortcut(parentNoteId, type) {
if (type === 'note') {
}
}
module.exports = {
getInboxNote,
createSqlConsole,
@@ -392,4 +397,5 @@ module.exports = {
createMissingSpecialNotes,
getShareRoot,
getBulkActionNote,
createShortcut
};