mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed pushing tags
This commit is contained in:
parent
6836e00de1
commit
99426172b2
12 changed files with 79 additions and 22 deletions
|
@ -7,6 +7,10 @@ export type INodeState = Readonly<{
|
|||
editor: INode;
|
||||
current: INode;
|
||||
comments: IComment[];
|
||||
related: {
|
||||
albums: Record<string, Partial<INode[]>>;
|
||||
similar: Partial<INode[]>;
|
||||
};
|
||||
comment_data: Record<number, IComment>;
|
||||
current_cover_image: IFile;
|
||||
|
||||
|
@ -28,6 +32,7 @@ const INITIAL_STATE: INodeState = {
|
|||
current: { ...EMPTY_NODE },
|
||||
comment_data: { 0: { ...EMPTY_COMMENT } },
|
||||
comments: [],
|
||||
related: null,
|
||||
current_cover_image: null,
|
||||
|
||||
is_loading: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue