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