1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-03 15:32:30 +02:00
joplin/ElectronClient/gui/NoteEditor/commands/focusElementNoteTitle.ts

19 lines
485 B
TypeScript
Raw Normal View History

import { CommandRuntime, CommandDeclaration } from 'lib/services/CommandService';
import { _ } from 'lib/locale';
export const declaration:CommandDeclaration = {
name: 'focusElementNoteTitle',
label: () => _('Note title'),
parentLabel: () => _('Focus'),
};
export const runtime = (comp:any):CommandRuntime => {
return {
execute: async () => {
if (!comp.titleInputRef.current) return;
comp.titleInputRef.current.focus();
},
enabledCondition: 'oneNoteSelected',
};
};