kanban thumbnails
Deploy / deploy (push) Successful in 2m30s

This commit is contained in:
twotalesanimation
2026-05-24 18:36:22 +02:00
parent 5c452a7512
commit 0723bea4ee
4 changed files with 35 additions and 5 deletions
+3 -1
View File
@@ -42,7 +42,7 @@ interface KanbanTask {
status: TaskStatus;
priority: string;
dueDate: Date | null;
shot?: { shotCode: string } | null;
shot?: { shotCode: string; thumbnailUrl?: string | null } | null;
asset?: { assetCode: string; name: string } | null;
assignedArtist?: {
id: string;
@@ -56,6 +56,8 @@ interface KanbanTask {
versionNumber: number;
approvalStatus: string;
createdAt: Date;
thumbnailUrl?: string | null;
posterUrl?: string | null;
}[];
}