1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00
Files
joplin/packages/lib/components/shared/NoteEditor/WarningBanner/onRichTextReadMoreLinkClick.ts
2025-07-29 20:25:43 +01:00

8 lines
264 B
TypeScript

import CommandService from '../../../../services/CommandService';
const onRichTextReadMoreLinkClick = () => {
void CommandService.instance().execute('openItem', 'https://joplinapp.org/help/apps/rich_text_editor');
};
export default onRichTextReadMoreLinkClick;