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

fixed boris comments

This commit is contained in:
Fedor Katurov 2019-12-02 15:49:09 +07:00
parent 0e4c1acc3f
commit 5cb0791752
7 changed files with 163 additions and 90 deletions
src/redux/node

View file

@ -39,8 +39,9 @@ export const nodeSetCurrent = (current: INodeState['current']) => ({
type: NODE_ACTIONS.SET_CURRENT,
});
export const nodePostComment = (id: number) => ({
export const nodePostComment = (id: number, is_before: boolean) => ({
id,
is_before,
type: NODE_ACTIONS.POST_COMMENT,
});