1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/hideModalMessage.ts
2020-11-05 16:58:23 +00:00

14 lines
341 B
TypeScript

import { CommandDeclaration, CommandRuntime } from '@joplinapp/lib/services/CommandService';
export const declaration:CommandDeclaration = {
name: 'hideModalMessage',
};
export const runtime = (comp:any):CommandRuntime => {
return {
execute: async () => {
comp.setState({ modalLayer: { visible: false, message: '' } });
},
};
};