1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/lib/commands/historyBackward.ts

20 lines
452 B
TypeScript
Raw Normal View History

import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
2020-11-05 18:58:23 +02:00
import { _ } from '../locale';
export const declaration: CommandDeclaration = {
name: 'historyBackward',
label: () => _('Back'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-back',
};
export const runtime = (): CommandRuntime => {
return {
execute: async () => {
utils.store.dispatch({
type: 'HISTORY_BACKWARD',
});
},
enabledCondition: 'historyhasBackwardNotes',
};
};