Desktop: Fixes #6108: Add "Other applications" import menu item (#6118)

pull/6409/head
Helmut K. C. Tessarek 2022-02-10 05:54:23 -05:00 committed by GitHub
parent 0a739e099d
commit 5e8ed8bc24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -347,6 +347,12 @@ function useMenu(props: Props) {
}
}
importItems.push({ type: 'separator' });
importItems.push({
label: _('Other applications...'),
click: () => { void bridge().openExternal('https://discourse.joplinapp.org/t/importing-notes-from-other-notebook-applications/22425'); },
});
exportItems.push(
menuItemDic.exportPdf
);