mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
Fix event all day
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
|
||||
export interface EventListStore {
|
||||
title: string
|
||||
startTime: Date
|
||||
endTime: Date
|
||||
allDay: boolean,
|
||||
event: EventList,
|
||||
calendarName: string
|
||||
calendarName: "Oficial" |"Pessoal"
|
||||
profile: "md" | "pr",
|
||||
id: string
|
||||
}
|
||||
@@ -27,12 +26,16 @@ export interface EventList {
|
||||
export interface CustomCalendarEvent {
|
||||
start: Date
|
||||
end: Date
|
||||
color: {
|
||||
primary: string,
|
||||
secondary: string
|
||||
},
|
||||
id: string
|
||||
index: number,
|
||||
CalendarName: string
|
||||
event: EventList
|
||||
}
|
||||
|
||||
|
||||
|
||||
export interface days {
|
||||
[days: string]: {
|
||||
day: number
|
||||
activeEvent: number
|
||||
events: CustomCalendarEvent[]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user