fix: coverImageAttachmentId
This commit is contained in:
parent
3c5bfcc6f3
commit
e01df4d369
@ -36,7 +36,7 @@ export interface ITask extends IAbstract {
|
|||||||
percentDone: number
|
percentDone: number
|
||||||
relatedTasks: Partial<Record<IRelationKind, ITask[]>>
|
relatedTasks: Partial<Record<IRelationKind, ITask[]>>
|
||||||
attachments: IAttachment[]
|
attachments: IAttachment[]
|
||||||
coverImageAttachmentId: IAttachment['id']
|
coverImageAttachmentId: IAttachment['id'] | null
|
||||||
identifier: string
|
identifier: string
|
||||||
index: number
|
index: number
|
||||||
isFavorite: boolean
|
isFavorite: boolean
|
||||||
|
@ -84,6 +84,7 @@ export default class TaskModel extends AbstractModel<ITask> implements ITask {
|
|||||||
index = 0
|
index = 0
|
||||||
isFavorite = false
|
isFavorite = false
|
||||||
subscription: ISubscription = null
|
subscription: ISubscription = null
|
||||||
|
coverImageAttachmentId: IAttachment['id'] = null
|
||||||
|
|
||||||
position = 0
|
position = 0
|
||||||
kanbanPosition = 0
|
kanbanPosition = 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user