rough outline of dragging tasks is working

This commit is contained in:
2025-07-06 14:09:27 +02:00
parent 0297fab83b
commit ee19cac4c3
7 changed files with 72 additions and 7 deletions

View File

@@ -8,7 +8,8 @@ export class Event {
public title: string,
public from: DateTime,
public to: DateTime,
public description: string
public description: string,
public task: Task | undefined = undefined
) { }
@@ -144,6 +145,10 @@ export class Event {
}
}
isTask() {
return this.task !== undefined
}
}
export type EventDimensions = {