- fix: Date problems... (it was a bad "copy" function, the object date was not valid...
- fix: error fetch on loading... (offline appeared)
This commit is contained in:
@@ -5,10 +5,10 @@ export interface ITodo {
|
||||
descr?: string,
|
||||
priority: number,
|
||||
completed: boolean,
|
||||
created_at: any,
|
||||
modify_at: any,
|
||||
completed_at: any,
|
||||
expiring_at: any,
|
||||
created_at: Date,
|
||||
modify_at: Date,
|
||||
completed_at: Date,
|
||||
expiring_at: Date,
|
||||
enableExpiring?: boolean,
|
||||
id_prev?: string,
|
||||
id_next?: string,
|
||||
|
||||
Reference in New Issue
Block a user