1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

fixed text editor appearance

This commit is contained in:
Fedor Katurov 2019-10-17 13:17:34 +07:00
parent a37bc76965
commit 57f90ee46b
5 changed files with 19 additions and 6 deletions

View file

@ -44,7 +44,7 @@ const setTags = (state: INodeState, { tags }: ReturnType<typeof nodeSetTags>) =>
assocPath(['current', 'tags'], tags, state);
const setEditor = (state: INodeState, { editor }: ReturnType<typeof nodeSetEditor>) =>
assocPath(['current', 'editor'], editor, state);
assocPath(['editor'], editor, state);
export const NODE_HANDLERS = {
[NODE_ACTIONS.SET_SAVE_ERRORS]: setSaveErrors,