1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

#34 cleaned IComment

This commit is contained in:
Fedor Katurov 2021-02-27 18:58:17 +07:00
parent 62f0fa59ca
commit 86a22cca3c
2 changed files with 0 additions and 6 deletions

View file

@ -106,10 +106,7 @@ export const EMPTY_COMMENT: IComment = {
id: null,
text: '',
files: [],
temp_ids: [],
is_private: false,
user: null,
error: '',
};
export const NODE_EDITORS = {

View file

@ -142,11 +142,8 @@ export interface INode {
export interface IComment {
id: number;
text: string;
temp_ids?: string[];
files: IFile[];
is_private: boolean;
user: IUser;
error?: string;
created_at?: string;
update_at?: string;