1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-08 23:07:32 +02:00
Files
joplin/ElectronClient/gui/MainScreen/commands/hideModalMessage.ts
2020-10-18 00:49:17 +01:00

14 lines
330 B
TypeScript

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